Ignore:
Timestamp:
Feb 22, 2001, 11:37:31 AM (25 years ago)
Author:
sandervl
Message:

window & class user word access fixes

File:
1 edited

Legend:

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

    r5056 r5242  
    1 /* $Id: win32class.h,v 1.13 2001-02-02 19:04:02 sandervl Exp $ */
     1/* $Id: win32class.h,v 1.14 2001-02-22 10:37:30 sandervl Exp $ */
    22/*
    33 * Win32 Window Class Managment Code for OS/2
     
    4242       WNDPROC  getWindowProc()         { return windowProc; };
    4343         LPSTR  getMenuNameA()          { return menuNameA; };
    44          DWORD  getExtraWndWords()      { return nrExtraWindowWords; };
     44         DWORD  getExtraWndBytes()      { return nrExtraWindowBytes; };
    4545
    4646         HICON  getIcon()               { return hIcon; };
     
    7777 //Standard class words/longs
    7878 ULONG          windowStyle;            //GCL_STYLE     * must be offset 14h *
    79  ULONG          nrExtraClassWords;      //GCL_CBCLSEXTRA
    80  ULONG          nrExtraWindowWords;     //GCL_CBWNDEXTRA
     79 ULONG          nrExtraClassBytes;      //GCL_CBCLSEXTRA
     80 ULONG          nrExtraWindowBytes;     //GCL_CBWNDEXTRA
    8181 HBRUSH         backgroundBrush;        //GCL_HBRBACKGROUND
    8282 HCURSOR        hCursor;                //GCL_HCURSOR
     
    9393 HDC            hdcClass;
    9494
    95  //User data class words/longs
    96  ULONG         *userClassLong;
     95 //User data class bytse
     96 char          *userClassBytes;
    9797 ULONG          processId;
    9898
Note: See TracChangeset for help on using the changeset viewer.