123456789101112131415161718192021222324252627 |
- namespace Microsoft.Win32
- {
-
- public static partial class NativeMethods
- {
-
-
-
- public const int ERROR = 0;
-
-
-
- public const int NULLREGION = 1;
-
-
-
- public const int SIMPLEREGION = 2;
-
-
-
- public const int COMPLEXREGION = 3;
-
-
-
- public const int RGN_ERROR = ERROR;
- }
- }
|