Changeset 1189 for trunk/src/user32/oslibwin.h
- Timestamp:
- Oct 8, 1999, 6:13:09 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/oslibwin.h
r1186 r1189 1 /* $Id: oslibwin.h,v 1.1 1 1999-10-08 14:57:17 sandervlExp $ */1 /* $Id: oslibwin.h,v 1.12 1999-10-08 16:13:08 cbratschi Exp $ */ 2 2 /* 3 3 * Window API wrappers for OS/2 … … 39 39 char *pszName, HWND Owner, ULONG fHWND_BOTTOM, HWND *hwndFrame); 40 40 41 BOOL OSLibWinConvertStyle(ULONG dwStyle, ULONG dwExStyle, ULONG *OSWinStyle, ULONG *OSFrameStyle );41 BOOL OSLibWinConvertStyle(ULONG dwStyle, ULONG dwExStyle, ULONG *OSWinStyle, ULONG *OSFrameStyle, ULONG *borderWidth, ULONG *borderHeight); 42 42 void OSLibSetWindowStyle(HWND hwnd, ULONG dwStyle); 43 43 … … 57 57 ULONG OSLibDosBeep(ULONG freg,ULONG dur); 58 58 HWND OSLibWinQueryFocus(HWND hwndDeskTop); 59 60 #define OSLIB_FID_SYSMENU 0x8002 61 #define OSLIB_FID_TITLEBAR 0x8003 62 #define OSLIB_FID_MINMAX 0x8004 63 #define OSLIB_FID_MENU 0x8005 64 #define OSLIB_FID_VERTSCROLL 0x8006 65 #define OSLIB_FID_HORZSCROLL 0x8007 66 #define OSLIB_FID_CLIENT 0x8008 67 59 68 HWND OSLibWinWindowFromID(HWND hwndParent,ULONG id); 60 69 BOOL OSLibWinSetFocus(HWND hwndDeskTop,HWND hwndNewFocus, BOOL activate); … … 248 257 HWND OSLibWinObjectWindowFromID(HWND hwndOwner, ULONG ID); 249 258 250 #define OSLIB_HSCROLL 251 #define OSLIB_VSCROLL 259 #define OSLIB_HSCROLL 0 260 #define OSLIB_VSCROLL 1 252 261 BOOL OSLibWinEnableScrollBar(HWND hwndParent, int scrollBar, BOOL fEnable); 253 262 BOOL OSLibWinShowScrollBar(HWND hwndParent, HWND hwndScroll, int scrollBar, BOOL fShow); … … 255 264 ULONG OSLibWinGetScrollPos(HWND hwndParent, HWND hwndScroll); 256 265 ULONG OSLibWinSetScrollPos(HWND hwndParent, HWND hwndScroll, int pos, int fRedraw); 257 BOOL OSLibWinSetScrollRange(HWND hwndParent, HWND hwndScroll, int minpos, 266 BOOL OSLibWinSetScrollRange(HWND hwndParent, HWND hwndScroll, int minpos, 258 267 int maxpos, int fRedraw); 259 BOOL OSLibWinSetScrollPageSize(HWND hwndParent, HWND hwndScroll, int pagesize, 268 BOOL OSLibWinSetScrollPageSize(HWND hwndParent, HWND hwndScroll, int pagesize, 260 269 int totalsize, int fRedraw); 261 270
Note:
See TracChangeset
for help on using the changeset viewer.