123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- namespace Microsoft.Win32
- {
-
- public static partial class NativeMethods
- {
-
-
-
- public const int OBJID_WINDOW = 0x00000000;
-
-
-
- public const int OBJID_SYSMENU = unchecked((int)0xFFFFFFFF);
-
-
-
- public const int OBJID_TITLEBAR = unchecked((int)0xFFFFFFFE);
-
-
-
- public const int OBJID_MENU = unchecked((int)0xFFFFFFFD);
-
-
-
- public const int OBJID_CLIENT = unchecked((int)0xFFFFFFFC);
-
-
-
- public const int OBJID_VSCROLL = unchecked((int)0xFFFFFFFB);
-
-
-
- public const int OBJID_HSCROLL = unchecked((int)0xFFFFFFFA);
-
-
-
- public const int OBJID_SIZEGRIP = unchecked((int)0xFFFFFFF9);
-
-
-
- public const int OBJID_CARET = unchecked((int)0xFFFFFFF8);
-
-
-
- public const int OBJID_CURSOR = unchecked((int)0xFFFFFFF7);
-
-
-
- public const int OBJID_ALERT = unchecked((int)0xFFFFFFF6);
-
-
-
- public const int OBJID_SOUND = unchecked((int)0xFFFFFFF5);
-
-
-
- public const int OBJID_QUERYCLASSNAMEIDX = unchecked((int)0xFFFFFFF4);
-
-
-
- public const int OBJID_NATIVEOM = unchecked((int)0xFFFFFFF0);
- }
- }
|