1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- namespace Microsoft.Win32
- {
-
- public static partial class NativeMethods
- {
-
-
-
- public const int CS_VREDRAW = 0x0001;
-
-
-
- public const int CS_HREDRAW = 0x0002;
-
-
-
- public const int CS_DBLCLKS = 0x0008;
-
-
-
- public const int CS_OWNDC = 0x0020;
-
-
-
- public const int CS_CLASSDC = 0x0040;
-
-
-
- public const int CS_PARENTDC = 0x0080;
-
-
-
- public const int CS_NOCLOSE = 0x0200;
-
-
-
- public const int CS_SAVEBITS = 0x0800;
-
-
-
- public const int CS_BYTEALIGNCLIENT = 0x1000;
-
-
-
- public const int CS_BYTEALIGNWINDOW = 0x2000;
-
-
-
- public const int CS_GLOBALCLASS = 0x4000;
-
-
-
- public const int CS_IME = 0x00010000;
-
-
-
- public const int CS_DROPSHADOW = 0x00020000;
- }
- }
|