Skip to content
Snippets Groups Projects
Commit ea881d25 authored by Uwe Bonnes's avatar Uwe Bonnes Committed by Alexandre Julliard
Browse files

Added GradientFill stub.

parent 4163e085
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment