Changeset 3707 for trunk/include
- Timestamp:
- Jun 14, 2000, 3:20:17 PM (25 years ago)
- Location:
- trunk/include
- Files:
-
- 3 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win32api.h
r3680 r3707 1 /* $Id: win32api.h,v 1.1 3 2000-06-08 18:11:02sandervl Exp $ */1 /* $Id: win32api.h,v 1.14 2000-06-14 13:19:44 sandervl Exp $ */ 2 2 3 3 /* … … 106 106 BOOL WIN32API DPtoLP(HDC,LPPOINT,INT); 107 107 BOOL WIN32API RedrawWindow(HWND,const RECT*,HRGN, DWORD); 108 HGDIOBJ WIN32API SelectObject(HDC,HGDIOBJ); 109 BOOL WIN32API DeleteObject(HANDLE hObj); 108 110 109 111 #endif -
trunk/include/win32type.h
r3640 r3707 1 /* $Id: win32type.h,v 1. 39 2000-06-01 11:26:14 sandervl Exp $ */1 /* $Id: win32type.h,v 1.40 2000-06-14 13:19:44 sandervl Exp $ */ 2 2 3 3 /* … … 329 329 #define HINSTANCE ULONG 330 330 #define HGLOBAL DWORD 331 #define HGDIOBJ DWORD 331 332 #define ATOM DWORD 332 333 #define HRSRC DWORD … … 572 573 573 574 575 typedef struct _RGNDATAHEADER { 576 DWORD dwSize; 577 DWORD iType; 578 DWORD nCount; 579 DWORD nRgnSize; 580 RECT rcBound; 581 } RGNDATAHEADER,*LPRGNDATAHEADER; 582 583 typedef struct _RGNDATA { 584 RGNDATAHEADER rdh; 585 char Buffer[1]; 586 } RGNDATA,*PRGNDATA,*LPRGNDATA; 587 574 588 /* WM_WINDOWPOSCHANGING/CHANGED struct */ 575 589 typedef struct tagWINDOWPOS -
trunk/include/winconst.h
r3640 r3707 1 /* $Id: winconst.h,v 1.3 4 2000-06-01 11:26:15sandervl Exp $ */1 /* $Id: winconst.h,v 1.35 2000-06-14 13:19:44 sandervl Exp $ */ 2 2 3 3 /* … … 1416 1416 #define FILE_CURRENT_W 1 1417 1417 #define FILE_END_W 2 1418 1419 /* Graphics Modes */ 1420 #define GM_COMPATIBLE_W 1 1421 #define GM_ADVANCED_W 2 1422 #define GM_LAST_W 2 1423 1424 #define RDH_RECTANGLES_W 1
Note:
See TracChangeset
for help on using the changeset viewer.