From ba3eb8e006938559ed5c6141a04dd118d5ab2e75 Mon Sep 17 00:00:00 2001 From: ExMatics HydrogenC <33123710+HydrogenC@users.noreply.github.com> Date: Thu, 30 Apr 2020 20:34:02 +0800 Subject: [PATCH] More REGSAM constants --- BeefLibs/corlib/src/Windows.bf | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/BeefLibs/corlib/src/Windows.bf b/BeefLibs/corlib/src/Windows.bf index 5972364d..8cc6b5a1 100644 --- a/BeefLibs/corlib/src/Windows.bf +++ b/BeefLibs/corlib/src/Windows.bf @@ -197,8 +197,6 @@ namespace System public const int32 REG_OPTION_NON_VOLATILE = 0; - public const int32 KEY_ALL_ACCESS = 0x000f003f; - public const int32 MB_OK = 0; public const int32 MB_OKCANCEL = 1; public const int32 MB_YESNO = 4; @@ -949,6 +947,10 @@ namespace System public const int32 PAGE_READWRITE = 0x04; public const int32 PAGE_WRITECOPY = 0x08; + public const int32 KEY_EXECUTE = (0x20019); + public const int32 KEY_READ = (0x20019); + public const int32 KEY_WRITE = (0x20006); + public const int32 KEY_ALL_ACCESS = (0xf003f); public const int32 KEY_QUERY_VALUE = (0x0001); public const int32 KEY_SET_VALUE = (0x0002); public const int32 KEY_CREATE_SUB_KEY = (0x0004);