1234567891011121314151617181920212223242526272829303132333435 |
- namespace Microsoft.Win32
- {
-
- public static partial class NativeMethods
- {
-
-
-
- public const int FORMAT_MESSAGE_ALLOCATE_BUFFER = 0x00000100;
-
-
-
- public const int FORMAT_MESSAGE_IGNORE_INSERTS = 0x00000200;
-
-
-
- public const int FORMAT_MESSAGE_FROM_STRING = 0x00000400;
-
-
-
- public const int FORMAT_MESSAGE_FROM_HMODULE = 0x00000800;
-
-
-
- public const int FORMAT_MESSAGE_FROM_SYSTEM = 0x00001000;
-
-
-
- public const int FORMAT_MESSAGE_ARGUMENT_ARRAY = 0x00002000;
-
-
-
- public const int FORMAT_MESSAGE_MAX_WIDTH_MASK = 0x000000FF;
- }
- }
|