Ignore:
Timestamp:
Jul 17, 1999, 11:17:58 AM (26 years ago)
Author:
sandervl
Message:

Lots of changes/additions

File:
1 edited

Legend:

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

    r314 r319  
    1 /* $Id: oslibwin.h,v 1.3 1999-07-16 11:32:08 sandervl Exp $ */
     1/* $Id: oslibwin.h,v 1.4 1999-07-17 09:17:58 sandervl Exp $ */
    22/*
    33 * Window API wrappers for OS/2
     
    2121HWND  OSLibWinCreateWindow(HWND hwndParent, ULONG dwWinStyle, ULONG dwFrameStyle,
    2222                           char *pszName, ULONG x, ULONG y, ULONG cx, ULONG cy,
    23                            HWND Owner, ULONG fHWND_BOTTOM);
     23                           HWND Owner, ULONG fHWND_BOTTOM, HWND *hwndFrame);
    2424
    2525BOOL  OSLibWinConvertStyle(ULONG dwStyle, ULONG *OSWinStyle, ULONG *OSFrameStyle);
     
    3434HWND  OSLibWinQueryTopMostChildWindow(HWND hwndParent);
    3535
     36
     37#define SWPOS_SIZE                   0x0001
     38#define SWPOS_MOVE                   0x0002
     39#define SWPOS_ZORDER                 0x0004
     40#define SWPOS_SHOW                   0x0008
     41#define SWPOS_HIDE                   0x0010
     42#define SWPOS_NOREDRAW               0x0020
     43#define SWPOS_NOADJUST               0x0040
     44#define SWPOS_ACTIVATE               0x0080
     45#define SWPOS_DEACTIVATE             0x0100
     46#define SWPOS_EXTSTATECHANGE         0x0200
     47#define SWPOS_MINIMIZE               0x0400
     48#define SWPOS_MAXIMIZE               0x0800
     49#define SWPOS_RESTORE                0x1000
     50#define SWPOS_FOCUSACTIVATE          0x2000
     51#define SWPOS_FOCUSDEACTIVATE        0x4000
     52#define SWPOS_NOAUTOCLOSE            0x8000    /* Valid in PROGDETAILS struct only */
     53
     54BOOL  OSLibWinSetWindowPos(HWND hwnd, HWND hwndInsertBehind, LONG x, LONG y, LONG cx, LONG cy, ULONG fl);
     55BOOL  OSLibWinShowWindow(HWND hwnd, ULONG fl);
     56
     57BOOL  OSLibWinDestroyWindow(HWND hwnd);
     58BOOL  OSLibWinQueryUpdateRect(HWND hwnd, PVOID pRect); //must be RECTL pointer!
     59BOOL  OSLibWinIsIconic(HWND hwnd);
     60
    3661#endif //__OSLIBWIN_H__
Note: See TracChangeset for help on using the changeset viewer.