Changeset 4466 for trunk/include
- Timestamp:
- Oct 9, 2000, 7:31:04 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/win.h
r264 r4466 1 /* $Id: win.h,v 1. 2 1999-07-04 15:34:18sandervl Exp $ */1 /* $Id: win.h,v 1.3 2000-10-09 17:31:04 sandervl Exp $ */ 2 2 3 3 /* … … 16 16 17 17 /* Built-in class names (see _Undocumented_Windows_ p.418) */ 18 #ifndef POPUPMENU_CLASS_NAME 18 19 #define POPUPMENU_CLASS_NAME "#32768" /* PopupMenu */ 20 #endif 21 #ifndef DESKTOP_CLASS_NAME 19 22 #define DESKTOP_CLASS_NAME "#32769" /* Desktop */ 23 #endif 24 #ifndef DIALOG_CLASS_NAME 20 25 #define DIALOG_CLASS_NAME "#32770" /* Dialog */ 26 #endif 27 #ifndef WINSWITCH_CLASS_NAME 21 28 #define WINSWITCH_CLASS_NAME "#32771" /* WinSwitch */ 29 #endif 30 #ifndef ICONTITLE_CLASS_NAME 22 31 #define ICONTITLE_CLASS_NAME "#32772" /* IconTitle */ 23 32 #endif 33 34 #ifndef POPUPMENU_CLASS_ATOM 24 35 #define POPUPMENU_CLASS_ATOM MAKEINTATOM(32768) /* PopupMenu */ 36 #endif 37 #ifndef DESKTOP_CLASS_ATOM 25 38 #define DESKTOP_CLASS_ATOM ((ATOM)32769) /* Desktop */ 39 #endif 40 #ifndef DIALOG_CLASS_ATOM 26 41 #define DIALOG_CLASS_ATOM MAKEINTATOM(32770) /* Dialog */ 42 #endif 43 #ifndef WINSWITCH_CLASS_ATOM 27 44 #define WINSWITCH_CLASS_ATOM MAKEINTATOM(32771) /* WinSwitch */ 45 #endif 46 #ifndef ICONTITLE_CLASS_ATOM 28 47 #define ICONTITLE_CLASS_ATOM MAKEINTATOM(32772) /* IconTitle */ 48 #endif 29 49 30 50 /* Built-in 32-bit classes */ … … 153 173 #define WIN_ISDIALOG 0x0200 /* Window is a dialog */ 154 174 #define WIN_ISWIN32 0x0400 /* Understands Win32 messages */ 175 #define WIN_NEEDS_SHOW_OWNEDPOPUP 0x0800 /* WM_SHOWWINDOW:SC_SHOW must be sent in the next ShowOwnedPopup call */ 155 176 156 177 /* BuildWinArray() flags */
Note:
See TracChangeset
for help on using the changeset viewer.