Commit ea881d25 authored by Uwe Bonnes's avatar Uwe Bonnes Committed by Alexandre Julliard

Added GradientFill stub.

parent 4163e085
......@@ -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
/* 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;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment