mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-29 12:55:59 +02:00
More REGSAM constants
This commit is contained in:
parent
a65c38c1ba
commit
ba3eb8e006
1 changed files with 4 additions and 2 deletions
|
@ -197,8 +197,6 @@ namespace System
|
||||||
|
|
||||||
public const int32 REG_OPTION_NON_VOLATILE = 0;
|
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_OK = 0;
|
||||||
public const int32 MB_OKCANCEL = 1;
|
public const int32 MB_OKCANCEL = 1;
|
||||||
public const int32 MB_YESNO = 4;
|
public const int32 MB_YESNO = 4;
|
||||||
|
@ -949,6 +947,10 @@ namespace System
|
||||||
public const int32 PAGE_READWRITE = 0x04;
|
public const int32 PAGE_READWRITE = 0x04;
|
||||||
public const int32 PAGE_WRITECOPY = 0x08;
|
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_QUERY_VALUE = (0x0001);
|
||||||
public const int32 KEY_SET_VALUE = (0x0002);
|
public const int32 KEY_SET_VALUE = (0x0002);
|
||||||
public const int32 KEY_CREATE_SUB_KEY = (0x0004);
|
public const int32 KEY_CREATE_SUB_KEY = (0x0004);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue