123456789101112131415161718192021222324252627 |
- namespace Microsoft.Win32
- {
-
- public static partial class NativeMethods
- {
-
-
-
- public const uint KLF_UNLOADPREVIOUS = 0x00000000;
-
-
-
- public const uint KLF_REORDER = 0x00000008;
-
-
-
- public const uint KLF_SETFORPROCESS = 0x00000100;
-
-
-
- public const uint KLF_SHIFTLOCK = 0x00010000;
-
-
-
- public const uint KLF_RESET = 0x40000000;
- }
- }
|