Changeset 3662 for trunk/src/user32/oslibwin.h
- Timestamp:
- Jun 7, 2000, 4:51:33 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/oslibwin.h
r3610 r3662 1 /* $Id: oslibwin.h,v 1.4 5 2000-05-26 18:43:34sandervl Exp $ */1 /* $Id: oslibwin.h,v 1.46 2000-06-07 14:51:27 sandervl Exp $ */ 2 2 /* 3 3 * Window API wrappers for OS/2 … … 40 40 HWND OSLibWinCreateWindow(HWND hwndParent,ULONG dwWinStyle, 41 41 char *pszName, HWND Owner, ULONG fBottom, 42 HWND *hwndFrame,ULONG id, BOOL fTaskList,BOOL fShellPosition, int classStyle);42 ULONG id, BOOL fTaskList,BOOL fShellPosition, int classStyle); 43 43 44 44 BOOL OSLibWinConvertStyle(ULONG dwStyle, ULONG dwExStyle, ULONG *OSWinStyle); … … 73 73 ULONG OSLibGetWindowHeight(HWND hwnd); //for point transformation 74 74 75 extern ULONG ScreenHeight ;75 extern ULONG ScreenHeight, ScreenWidth; 76 76 inline ULONG OSLibQueryScreenHeight(void) { return (ScreenHeight); } 77 inline ULONG OSLibQueryScreenWidth(void) { return (ScreenWidth); } 77 78 78 79 //reserved deleted … … 220 221 #define RELATIVE_TO_WINDOW 0 221 222 #define RELATIVE_TO_SCREEN 1 222 BOOL OSLibWinQueryWindowRect( HWND hwnd, PRECT pRect, int RelativeTo = RELATIVE_TO_WINDOW);223 BOOL OSLibWinQueryWindowRect(Win32BaseWindow *window, PRECT pRect, int RelativeTo = RELATIVE_TO_WINDOW); 223 224 BOOL OSLibWinCalcFrameRect(HWND hwnd, RECT *pRect, BOOL fClient); 224 225 BOOL OSLibGetMinMaxInfo(HWND hwndFrame, MINMAXINFO *pMinMax); … … 247 248 248 249 BOOL OSLibWinQueryWindowPos (HWND hwnd, PSWP pswp); 249 void OSLibMapSWPtoWINDOWPOS(PSWP pswp, struct tagWINDOWPOS *pwpos, PSWP pswpOld, HWND hParent, HWND hFrame); 250 void OSLibMapSWPtoWINDOWPOSFrame(PSWP pswp, struct tagWINDOWPOS *pwpos, PSWP pswpOld, HWND hParent, HWND hFrame); 251 void OSLibMapWINDOWPOStoSWP(struct tagWINDOWPOS *pwpos, PSWP pswp, PSWP pswpOld, HWND hParent, HWND hFrame); 252 void OSLibMapWINDOWPOStoSWPFrame(PWINDOWPOS pwpos, PSWP pswp, PSWP pswpOld, HWND hParent, HWND hFrame); 250 void OSLibMapSWPtoWINDOWPOS(PSWP pswp, PWINDOWPOS pwpos, PSWP pswpOld, 251 int parentHeight, int clientOrgX, int clientOrgY, 252 HWND hwnd); 253 void OSLibMapWINDOWPOStoSWP(struct tagWINDOWPOS *pwpos, PSWP pswp, PSWP pswpOld, 254 int parentHeight, int clientOrgX, int clientOrgY, HWND hFrame); 253 255 254 256 HWND OSLibWinBeginEnumWindows(HWND hwnd);
Note:
See TracChangeset
for help on using the changeset viewer.