Changeset 8942


Ignore:
Timestamp:
Jul 30, 2002, 8:20:44 PM (23 years ago)
Author:
achimha
Message:

adding documentation

Location:
trunk/src/user32
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/user32/win32wbase.cpp

    r8624 r8942  
    1 /* $Id: win32wbase.cpp,v 1.328 2002-06-09 19:53:32 sandervl Exp $ */
     1/* $Id: win32wbase.cpp,v 1.329 2002-07-30 18:20:42 achimha Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2
     
    134134    Init();
    135135    this->isUnicode = isUnicode;
     136    // call member function
    136137    CreateWindowExA(lpCreateStructA, classAtom);
    137138}
     
    169170  Win32Hwnd        = 0;
    170171
     172  // allocate a Win32 HWND, return it in Win32Hwnd and associate object
     173  // pointer with it
    171174  if(HwAllocateWindowHandle(&Win32Hwnd, (ULONG)this) == FALSE)
    172175  {
     
    416419        * that if an overlapped window is created with WS_VISIBLE style bit
    417420        * set and the x parameter is set to CW_USEDEFAULT, the system ignores
    418         * the y parameter. However, disassembling NT implementation (WIN32K.SYS)
    419         * reveals that
     421        * the y parameter. However, looking at NT reveals that
    420422        *
    421423        * 1) not only if checks for CW_USEDEFAULT but also for CW_USEDEFAULT16
     
    548550        return FALSE;
    549551    }
    550 
    551552    teb->o.odin.newWindow = (ULONG)this;
    552553
    553554    DWORD dwOSWinStyle, dwOSFrameStyle;
    554 
    555555    OSLibWinConvertStyle(dwStyle,dwExStyle,&dwOSWinStyle, &dwOSFrameStyle);
    556556
  • TabularUnified trunk/src/user32/win32wndhandle.cpp

    r8656 r8942  
    1 /* $Id: win32wndhandle.cpp,v 1.14 2002-06-13 14:02:50 sandervl Exp $ */
     1/* $Id: win32wndhandle.cpp,v 1.15 2002-07-30 18:20:44 achimha Exp $ */
    22/*
    33 * Win32 Handle Management Code for OS/2
     
    77 *
    88 *
     9 * TODO: a linear list might not be the optimal implementation. Look
     10 *       into using some sort of tree
    911 * TODO: The table should be dynamically increased when necessary
    1012 *       This is just a quick and dirty implementation
Note: See TracChangeset for help on using the changeset viewer.