]> sourceware.org Git - newlib-cygwin.git/commitdiff
* include/wingdi.h (AlphaBlend,GradientFill,TransparentBlt):
authorDanny Smith <dannysmith@users.sourceforge.net>
Mon, 5 Aug 2002 02:03:24 +0000 (02:03 +0000)
committerDanny Smith <dannysmith@users.sourceforge.net>
Mon, 5 Aug 2002 02:03:24 +0000 (02:03 +0000)
Add prototypes.
* lib/msimg32.def: New file, with stubs for above.

winsup/w32api/ChangeLog
winsup/w32api/include/wingdi.h
winsup/w32api/lib/msimg32.def [new file with mode: 0644]

index 9df0c3c9173668dd215337b4104964b8da8a48f9..09111df68f0a5e7c9252c7dccbccffa58b93fa99 100644 (file)
@@ -1,6 +1,12 @@
+2002-08-05  Danny Smith  <dannysmith@users.sourceforge.net>
+
+       * include/wingdi.h (AlphaBlend,GradientFill,TransparentBlt):
+       Add prototypes.
+       * lib/msimg32.def: New file, with stubs for above.
+
 2002-08-03  Danny Smith  <dannysmith@users.sourceforge.net>
 
-       * winbase.h (AddAccessAllowedAceEx,AddAccessDeniedAceEx,
+       * include/winbase.h (AddAccessAllowedAceEx,AddAccessDeniedAceEx,
        GetFileSizeEx, SetFilePointerEx): Add prototypes.
        (EncryptFile[AW], FileEncryptionStatus[AW]): Add prototypes
        and UNICODE mappings.
@@ -20,7 +26,7 @@
 
        * include/windef.h (PVOID): Move typedef to...
        * include/winnt: ...here.
-       (PVOID64): New typeddef.
+       (PVOID64): New typedef.
 
        * include/winnt,h (FILE_SEGMENT_ELEMENT): Define union.
        * include/winbase.h (ReadFileScatter, WriteFileGather):
index a3717106a46af90cff0dd06abe068aaed9e413bb..7b21e0f8998d43e1993341dd4a1d1cf02b6faa2d 100644 (file)
@@ -2736,6 +2736,12 @@ BOOL WINAPI wglUseFontBitmapsW(HDC,DWORD,DWORD,DWORD);
 BOOL WINAPI wglUseFontOutlinesA(HDC,DWORD,DWORD,DWORD,FLOAT,FLOAT,int,LPGLYPHMETRICSFLOAT);
 BOOL WINAPI wglUseFontOutlinesW(HDC,DWORD,DWORD,DWORD,FLOAT,FLOAT,int,LPGLYPHMETRICSFLOAT);
 
+#if (WINVER>= 0x0500)
+BOOL WINAPI AlphaBlend(HDC,int,int,int,int,HDC,int,int,int,int,BLENDFUNCTION);
+BOOL WINAPI GradientFill(HDC,PTRIVERTEX,ULONG,PVOID,ULONG,ULONG);
+BOOL WINAPI TransparentBlt(HDC,int,int,int,int,HDC,int,int,int,int,UINT);
+#endif
+
 #ifdef UNICODE
 typedef WCHAR BCHAR;
 typedef DOCINFOW DOCINFO, *LPDOCINFO;
diff --git a/winsup/w32api/lib/msimg32.def b/winsup/w32api/lib/msimg32.def
new file mode 100644 (file)
index 0000000..4f722a1
--- /dev/null
@@ -0,0 +1,5 @@
+LIBRARY MSIMG32.DLL
+EXPORTS
+AlphaBlend@44
+GradientFill@24
+TransparentBlt@44
This page took 0.037551 seconds and 5 git commands to generate.