Changeset 3707 for trunk/include


Ignore:
Timestamp:
Jun 14, 2000, 3:20:17 PM (25 years ago)
Author:
sandervl
Message:

header update

Location:
trunk/include
Files:
3 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/win32api.h

    r3680 r3707  
    1 /* $Id: win32api.h,v 1.13 2000-06-08 18:11:02 sandervl Exp $ */
     1/* $Id: win32api.h,v 1.14 2000-06-14 13:19:44 sandervl Exp $ */
    22
    33/*
     
    106106BOOL    WIN32API DPtoLP(HDC,LPPOINT,INT);
    107107BOOL    WIN32API RedrawWindow(HWND,const RECT*,HRGN, DWORD);
     108HGDIOBJ WIN32API SelectObject(HDC,HGDIOBJ);
     109BOOL    WIN32API DeleteObject(HANDLE hObj);
    108110
    109111#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 $ */
    22
    33/*
     
    329329#define HINSTANCE ULONG
    330330#define HGLOBAL DWORD
     331#define HGDIOBJ DWORD
    331332#define ATOM    DWORD
    332333#define HRSRC   DWORD
     
    572573
    573574
     575typedef struct _RGNDATAHEADER {
     576    DWORD       dwSize;
     577    DWORD       iType;
     578    DWORD       nCount;
     579    DWORD       nRgnSize;
     580    RECT        rcBound;
     581} RGNDATAHEADER,*LPRGNDATAHEADER;
     582
     583typedef struct _RGNDATA {
     584    RGNDATAHEADER       rdh;
     585    char                Buffer[1];
     586} RGNDATA,*PRGNDATA,*LPRGNDATA;
     587
    574588/* WM_WINDOWPOSCHANGING/CHANGED struct */
    575589typedef struct tagWINDOWPOS
  • trunk/include/winconst.h

    r3640 r3707  
    1 /* $Id: winconst.h,v 1.34 2000-06-01 11:26:15 sandervl Exp $ */
     1/* $Id: winconst.h,v 1.35 2000-06-14 13:19:44 sandervl Exp $ */
    22
    33/*
     
    14161416#define FILE_CURRENT_W            1
    14171417#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.