Added GradientFill stub.

This commit is contained in:
Uwe Bonnes 2002-01-18 18:10:43 +00:00 committed by Alexandre Julliard
parent 4163e08541
commit ea881d25ff
2 changed files with 15 additions and 3 deletions

View File

@ -3,10 +3,10 @@ type win32
import ntdll.dll
debug_channels()
debug_channels (msimg32)
@ stub AlphaBlend
@ stub DllInitialize
@ stub GradientFill
@ stdcall GradientFill (long ptr long ptr long long ) GradientFill
@ stub TransparentBlt
@ stub vSetDdrawflag

View File

@ -1 +1,13 @@
/* nothing here yet */
#include "winbase.h"
#include "winerror.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL(msimg32);
BOOL WINAPI GradientFill(HDC hdc, void * vert_array, ULONG nvert,
void * grad_array, ULONG ngrad, ULONG mode)
{
FIXME("stub: %ld vertices %ld gradients mode %lx\n", nvert, ngrad, mode);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}