Ignore:
Timestamp:
Oct 14, 1999, 8:27:59 PM (26 years ago)
Author:
sandervl
Message:

Lots of window fixes & changes

File:
1 edited

Legend:

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

    r1281 r1297  
    1 /* $Id: oslibwin.cpp,v 1.27 1999-10-14 09:22:40 sandervl Exp $ */
     1/* $Id: oslibwin.cpp,v 1.28 1999-10-14 18:27:57 sandervl Exp $ */
    22/*
    33 * Window API wrappers for OS/2
     
    4343//******************************************************************************
    4444//******************************************************************************
     45BOOL OSLibWinSetOwner(HWND hwnd, HWND hwndOwner)
     46{
     47  return WinSetOwner(hwnd, hwndOwner);
     48}
     49//******************************************************************************
     50//******************************************************************************
    4551HWND OSLibWinCreateWindow(HWND hwndParent, ULONG dwWinStyle, ULONG dwFrameStyle,
    46                           char *pszName, HWND Owner, ULONG fHWND_BOTTOM, HWND *hwndFrame)
     52                          char *pszName, HWND Owner, ULONG fHWND_BOTTOM, HWND *hwndFrame,
     53                          ULONG id)
    4754{
    4855 HWND  hwndClient;
     
    7380        *hwndFrame = WinCreateStdWindow(hwndParent, dwWinStyle,
    7481                                       &dwFrameStyle, WIN32_STDCLASS,
    75                                        "", dwClientStyle, 0, 0, &hwndClient);
     82                                       "", dwClientStyle, 0, id, &hwndClient);
    7683        if(*hwndFrame) {
    7784                if(pszName) {
     
    320327BOOL OSLibWinShowWindow(HWND hwnd, ULONG fl)
    321328{
    322  BOOL rc;
     329 BOOL rc = 1;
    323330
    324331  if(fl & SWP_SHOW) {
Note: See TracChangeset for help on using the changeset viewer.