* include/wingdi.h (AlphaBlend,GradientFill,TransparentBlt):
Add prototypes. * lib/msimg32.def: New file, with stubs for above.
This commit is contained in:
parent
2ed099e2bf
commit
9f37f36de6
|
@ -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):
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
LIBRARY MSIMG32.DLL
|
||||
EXPORTS
|
||||
AlphaBlend@44
|
||||
GradientFill@24
|
||||
TransparentBlt@44
|
Loading…
Reference in New Issue