Storing an IP address in a signed int results in bugs if it starts
[wine] / dlls / msimg32 / msimg32_main.c
1 #include "winbase.h"
2 #include "winerror.h"
3 #include "debugtools.h"
4
5 DEFAULT_DEBUG_CHANNEL(msimg32);
6
7 BOOL WINAPI GradientFill(HDC hdc, void * vert_array, ULONG nvert, 
8                     void * grad_array, ULONG ngrad, ULONG mode)
9 {
10   FIXME("stub: %ld vertices %ld gradients mode %lx\n", nvert, ngrad, mode);
11   SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
12   return FALSE;
13 }