Changeset 6445 for trunk/include
- Timestamp:
- Aug 4, 2001, 3:49:55 PM (24 years ago)
- 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 3 1 /* 4 2 * Window definitions … … 79 77 typedef struct tagWND 80 78 { 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) */ 100 85 DWORD dwStyle; /* Window style (from CreateWindow) */ 101 86 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]; 111 94 } WND; 112 95 -
trunk/include/win/winuser.h
r6381 r6445 3324 3324 INT,INT,HWND,HINSTANCE,LPARAM); 3325 3325 #define CreateMDIWindow WINELIB_NAME_AW(CreateMDIWindow) 3326 void WINAPI CalcChildScroll(HWND, WORD);3326 void WINAPI CalcChildScroll(HWND,INT); 3327 3327 LRESULT WINAPI DefDlgProcA(HWND,UINT,WPARAM,LPARAM); 3328 3328 LRESULT WINAPI DefDlgProcW(HWND,UINT,WPARAM,LPARAM);
Note:
See TracChangeset
for help on using the changeset viewer.