diff dwt/internal/win32/WINAPI.d @ 24:7b3e88548661

GCData, 1/3 of GC
author Frank Benoit <benoit@tionex.de>
date Sun, 27 Jan 2008 20:29:00 +0100
parents ded98545bb1f
children d6fa61ac6912
line wrap: on
line diff
--- a/dwt/internal/win32/WINAPI.d	Sun Jan 27 17:43:55 2008 +0100
+++ b/dwt/internal/win32/WINAPI.d	Sun Jan 27 20:29:00 2008 +0100
@@ -14,6 +14,19 @@
 int AddFontResourceExA(char* lpszFilename, int fl, void* pdv);
 int AddFontResourceExW(wchar* lpszFilename, int fl, void* pdv);
 
+BOOL AlphaBlend(
+  HDC hdcDest,                 // handle to destination DC
+  int nXOriginDest,            // x-coord of upper-left corner
+  int nYOriginDest,            // y-coord of upper-left corner
+  int nWidthDest,              // destination width
+  int nHeightDest,             // destination height
+  HDC hdcSrc,                  // handle to source DC
+  int nXOriginSrc,             // x-coord of upper-left corner
+  int nYOriginSrc,             // y-coord of upper-left corner
+  int nWidthSrc,               // source width
+  int nHeightSrc,              // source height
+  BLENDFUNCTION blendFunction  // alpha-blending function
+);
 }