diff options
author | Robert Collins <rbtcollins@hotmail.com> | 2001-12-21 06:53:56 +0000 |
---|---|---|
committer | Robert Collins <rbtcollins@hotmail.com> | 2001-12-21 06:53:56 +0000 |
commit | a3e320f3c9759b2ad6267daca68e24952f27d59c (patch) | |
tree | 050630803cb6a337c410151fee279295444db95e /winsup/w32api | |
parent | 7b5ea138a288f90cf7076cd745820ec28012d73e (diff) | |
download | cygnal-a3e320f3c9759b2ad6267daca68e24952f27d59c.tar.gz cygnal-a3e320f3c9759b2ad6267daca68e24952f27d59c.tar.bz2 cygnal-a3e320f3c9759b2ad6267daca68e24952f27d59c.zip |
2001-12-21 Robert Collins <rbtcollins@hotmail.com>
* include/wingdi.h: Add GetRandomRgn and SYSRGN.
Diffstat (limited to 'winsup/w32api')
-rw-r--r-- | winsup/w32api/ChangeLog | 4 | ||||
-rw-r--r-- | winsup/w32api/include/wingdi.h | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog index 8441bc9ea..c22895fe2 100644 --- a/winsup/w32api/ChangeLog +++ b/winsup/w32api/ChangeLog @@ -1,3 +1,7 @@ +2001-12-21 Robert Collins <rbtcollins@hotmail.com> + + * include/wingdi.h: Add GetRandomRgn and SYSRGN. + 2001-12-20 Christopher Faylor <cgf@redhat.com> * lib/Makefile.in: Revert inst_installdir definitions to working diff --git a/winsup/w32api/include/wingdi.h b/winsup/w32api/include/wingdi.h index dcd5f3b6d..fd2a5c5de 100644 --- a/winsup/w32api/include/wingdi.h +++ b/winsup/w32api/include/wingdi.h @@ -2009,6 +2009,8 @@ typedef struct _RGNDATA { RGNDATAHEADER rdh; char Buffer[1]; } RGNDATA,*LPRGNDATA; +/* for GetRandomRgn */ +#define SYSRGN 4 typedef struct tagGCP_RESULTSA { DWORD lStructSize; LPSTR lpOutString; @@ -2539,6 +2541,7 @@ COLORREF WINAPI GetPixel(HDC,int,int); int WINAPI GetPixelFormat(HDC); int WINAPI GetPolyFillMode(HDC); BOOL WINAPI GetRasterizerCaps(LPRASTERIZER_STATUS,UINT); +int WINAPI GetRandomRgn (HDC,HRGN,INT); DWORD WINAPI GetRegionData(HRGN,DWORD,LPRGNDATA); int WINAPI GetRgnBox(HRGN,LPRECT); int WINAPI GetROP2(HDC); |