Changeset 321 for trunk/src/user32/new/oslibwin.h
- Timestamp:
- Jul 17, 1999, 1:56:51 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/new/oslibwin.h
r319 r321 1 /* $Id: oslibwin.h,v 1. 4 1999-07-17 09:17:58sandervl Exp $ */1 /* $Id: oslibwin.h,v 1.5 1999-07-17 11:52:22 sandervl Exp $ */ 2 2 /* 3 3 * Window API wrappers for OS/2 … … 32 32 HWND OSLibWinCreateMenu(HWND hwndParent, PVOID menutemplate); 33 33 34 HWND OSLibWinQueryTopMostChildWindow(HWND hwndParent);35 36 34 37 35 #define SWPOS_SIZE 0x0001 … … 52 50 #define SWPOS_NOAUTOCLOSE 0x8000 /* Valid in PROGDETAILS struct only */ 53 51 52 #define HWNDOS_TOP (HWND)3 53 #define HWNDOS_BOTTOM (HWND)4 54 54 55 BOOL OSLibWinSetWindowPos(HWND hwnd, HWND hwndInsertBehind, LONG x, LONG y, LONG cx, LONG cy, ULONG fl); 55 56 BOOL OSLibWinShowWindow(HWND hwnd, ULONG fl); … … 58 59 BOOL OSLibWinQueryUpdateRect(HWND hwnd, PVOID pRect); //must be RECTL pointer! 59 60 BOOL OSLibWinIsIconic(HWND hwnd); 61 BOOL OSLibWinSetActiveWindow(HWND hwnd); 62 BOOL OSLibWinSetFocus(HWND hwnd); 63 BOOL OSLibWinEnableWindow(HWND hwnd, BOOL fEnable); 64 BOOL OSLibWinIsWindowEnabled(HWND hwnd); 65 BOOL OSLibWinIsWindowVisible(HWND hwnd); 66 BOOL OSLibWinQueryActiveWindow(); 67 68 #define QWOS_NEXT 0 69 #define QWOS_PREV 1 70 #define QWOS_TOP 2 71 #define QWOS_BOTTOM 3 72 #define QWOS_OWNER 4 73 #define QWOS_PARENT 5 74 #define QWOS_NEXTTOP 6 75 #define QWOS_PREVTOP 7 76 #define QWOS_FRAMEOWNER 8 77 78 HWND OSLibWinQueryWindow(HWND hwnd, ULONG lCode); 79 80 81 void OSLibWinPostQuitMessage(ULONG nExitCode); 82 LONG OSLibWinDispatchMsg(MSG *msg, BOOL isUnicode = FALSE); 83 84 BOOL OSLibWinGetMsg(LPMSG pMsg, HWND hwnd, UINT uMsgFilterMin, UINT uMsgFilterMax, BOOL isUnicode = FALSE); 60 85 61 86 #endif //__OSLIBWIN_H__
Note:
See TracChangeset
for help on using the changeset viewer.