Changeset 6445 for trunk/include


Ignore:
Timestamp:
Aug 4, 2001, 3:49:55 PM (24 years ago)
Author:
sandervl
Message:

header update

Location:
trunk/include/win
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/win/win.h

    r4466 r6445  
    1 /* $Id: win.h,v 1.3 2000-10-09 17:31:04 sandervl Exp $ */
    2 
    31/*
    42 * Window definitions
     
    7977typedef struct tagWND
    8078{
    81     struct tagWND *next;          /* Next sibling */
    82     struct tagWND *child;         /* First child */
    83     struct tagWND *parent;        /* Window parent (from CreateWindow) */
    84     struct tagWND *owner;         /* Window owner */
    85     struct tagCLASS *Class;       /* Window class */
    86     HWINDOWPROC    winproc;       /* Window procedure */
    87     DWORD          dwMagic;       /* Magic number (must be WND_MAGIC) */
    88     HWND         hwndSelf;      /* Handle of this window */
    89     HINSTANCE    hInstance;     /* Window hInstance (from CreateWindow) */
    90     RECT         rectClient;    /* Client area rel. to parent client area */
    91     RECT         rectWindow;    /* Whole window rel. to parent client area */
    92     LPSTR          text;          /* Window text */
    93     void          *pVScroll;      /* Vertical scroll-bar info */
    94     void          *pHScroll;      /* Horizontal scroll-bar info */
    95     void          *pProp;         /* Pointer to properties list */
    96     struct tagDCE *dce;           /* Window DCE (if CS_OWNDC or CS_CLASSDC) */
    97     HGLOBAL16      hmemTaskQ;     /* Task queue global memory handle */
    98     HRGN16         hrgnUpdate;    /* Update region */
    99     HWND         hwndLastActive;/* Last active popup hwnd */
     79    struct tagWND *parent;
     80    struct tagWND *child;
     81    struct tagWND *next;
     82    struct tagWND *owner;
     83    HWND           hwndSelf;      /* Handle of this window */
     84    HINSTANCE      hInstance;     /* Window hInstance (from CreateWindow) */
    10085    DWORD          dwStyle;       /* Window style (from CreateWindow) */
    10186    DWORD          dwExStyle;     /* Extended style (from CreateWindowEx) */
    102     UINT         wIDmenu;       /* ID or hmenu (from CreateWindow) */
    103     DWORD          helpContext;   /* Help context ID */
    104     WORD           flags;         /* Misc. flags (see below) */
    105     HMENU16        hSysMenu;      /* window's copy of System Menu */
    106     int            irefCount;     /* window's reference count*/
    107     DWORD          userdata;      /* User private data */
    108     struct tagWND_DRIVER *pDriver;  /* Window driver */
    109     void          *pDriverData;   /* Window driver data */
    110     DWORD          wExtra[1];     /* Window extra bytes */
     87    UINT           wIDmenu;       /* ID or hmenu (from CreateWindow) */
     88    HMENU          hSysMenu;      /* window's copy of System Menu */
     89    RECT           rectClient;
     90    RECT           rectWindow;
     91    LPWSTR         text;           /* Window text */
     92    DWORD          cbWndExtra;
     93    DWORD          wExtra[1];
    11194} WND;
    11295
  • trunk/include/win/winuser.h

    r6381 r6445  
    33243324                                INT,INT,HWND,HINSTANCE,LPARAM);
    33253325#define     CreateMDIWindow WINELIB_NAME_AW(CreateMDIWindow)
    3326 void        WINAPI CalcChildScroll(HWND,WORD);
     3326void        WINAPI CalcChildScroll(HWND,INT);
    33273327LRESULT     WINAPI DefDlgProcA(HWND,UINT,WPARAM,LPARAM);
    33283328LRESULT     WINAPI DefDlgProcW(HWND,UINT,WPARAM,LPARAM);
Note: See TracChangeset for help on using the changeset viewer.