Commit c2489c50 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

gdi32: Add GdiDeleteSpoolFileHandle stub.

parent 8dfa1d66
...@@ -2673,3 +2673,12 @@ HANDLE WINAPI GdiGetSpoolFileHandle( WCHAR *printer_name, ...@@ -2673,3 +2673,12 @@ HANDLE WINAPI GdiGetSpoolFileHandle( WCHAR *printer_name,
FIXME( "%s %p %s\n", wine_dbgstr_w(printer_name), devmode, wine_dbgstr_w(doc_name) ); FIXME( "%s %p %s\n", wine_dbgstr_w(printer_name), devmode, wine_dbgstr_w(doc_name) );
return NULL; return NULL;
} }
/*******************************************************************
* GdiDeleteSpoolFileHandle (GDI32.@)
*/
BOOL WINAPI GdiDeleteSpoolFileHandle( HANDLE h )
{
FIXME( "%p\n", h );
return FALSE;
}
...@@ -177,7 +177,7 @@ ...@@ -177,7 +177,7 @@
@ stub GdiDciSetDestination @ stub GdiDciSetDestination
@ stub GdiDeleteLocalDC @ stub GdiDeleteLocalDC
@ stub GdiDeleteLocalObject @ stub GdiDeleteLocalObject
# @ stub GdiDeleteSpoolFileHandle @ stdcall GdiDeleteSpoolFileHandle(ptr)
@ stdcall GdiDescribePixelFormat(long long long ptr) NtGdiDescribePixelFormat @ stdcall GdiDescribePixelFormat(long long long ptr) NtGdiDescribePixelFormat
@ stdcall GdiDllInitialize(ptr long ptr) @ stdcall GdiDllInitialize(ptr long ptr)
@ stdcall GdiDrawStream(long long ptr) NtGdiDrawStream @ stdcall GdiDrawStream(long long ptr) NtGdiDrawStream
......
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