Ignore:
Timestamp:
Jun 7, 2000, 4:51:33 PM (25 years ago)
Author:
sandervl
Message:

Major rewrite: frame/client -> frame

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/oslibwin.h

    r3610 r3662  
    1 /* $Id: oslibwin.h,v 1.45 2000-05-26 18:43:34 sandervl Exp $ */
     1/* $Id: oslibwin.h,v 1.46 2000-06-07 14:51:27 sandervl Exp $ */
    22/*
    33 * Window API wrappers for OS/2
     
    4040HWND  OSLibWinCreateWindow(HWND hwndParent,ULONG dwWinStyle,
    4141                           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);
    4343
    4444BOOL  OSLibWinConvertStyle(ULONG dwStyle, ULONG dwExStyle, ULONG *OSWinStyle);
     
    7373ULONG OSLibGetWindowHeight(HWND hwnd); //for point transformation
    7474
    75 extern ULONG ScreenHeight;
     75extern ULONG ScreenHeight, ScreenWidth;
    7676inline ULONG OSLibQueryScreenHeight(void) { return (ScreenHeight); }
     77inline ULONG OSLibQueryScreenWidth(void)  { return (ScreenWidth); }
    7778
    7879//reserved deleted
     
    220221#define RELATIVE_TO_WINDOW 0
    221222#define RELATIVE_TO_SCREEN 1
    222 BOOL  OSLibWinQueryWindowRect(HWND hwnd, PRECT pRect, int RelativeTo = RELATIVE_TO_WINDOW);
     223BOOL  OSLibWinQueryWindowRect(Win32BaseWindow *window, PRECT pRect, int RelativeTo = RELATIVE_TO_WINDOW);
    223224BOOL  OSLibWinCalcFrameRect(HWND hwnd, RECT *pRect, BOOL fClient);
    224225BOOL  OSLibGetMinMaxInfo(HWND hwndFrame, MINMAXINFO *pMinMax);
     
    247248
    248249BOOL  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);
     250void  OSLibMapSWPtoWINDOWPOS(PSWP pswp, PWINDOWPOS pwpos, PSWP pswpOld,
     251                            int parentHeight, int clientOrgX, int clientOrgY,
     252                            HWND hwnd);
     253void  OSLibMapWINDOWPOStoSWP(struct tagWINDOWPOS *pwpos, PSWP pswp, PSWP pswpOld,
     254                             int parentHeight, int clientOrgX, int clientOrgY, HWND hFrame);
    253255
    254256HWND  OSLibWinBeginEnumWindows(HWND hwnd);
Note: See TracChangeset for help on using the changeset viewer.