1234567891011121314151617181920212223242526272829303132333435 |
- namespace Microsoft.Win32
- {
-
- public static partial class NativeMethods
- {
-
-
-
- public const int GWL_USERDATA = -21;
-
-
-
- public const int GWL_EXSTYLE = -20;
-
-
-
- public const int GWL_STYLE = -16;
-
-
-
- public const int GWL_ID = -12;
-
-
-
- public const int GWL_HWNDPARENT = -8;
-
-
-
- public const int GWL_HINSTANCE = -6;
-
-
-
- public const int GWL_WNDPROC = -4;
- }
- }
|