gdi32: Add GdiGetSpoolFileHandle stub.
This commit is contained in:
parent
81fa8615eb
commit
8dfa1d66b1
2 changed files with 11 additions and 1 deletions
|
@ -2663,3 +2663,13 @@ ULONG WINAPI DdQueryDisplaySettingsUniqueness(void)
|
|||
if (!warn_once++) FIXME( "stub\n" );
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*******************************************************************
|
||||
* GdiGetSpoolFileHandle (GDI32.@)
|
||||
*/
|
||||
HANDLE WINAPI GdiGetSpoolFileHandle( WCHAR *printer_name,
|
||||
DEVMODEW *devmode, WCHAR *doc_name )
|
||||
{
|
||||
FIXME( "%s %p %s\n", wine_dbgstr_w(printer_name), devmode, wine_dbgstr_w(doc_name) );
|
||||
return NULL;
|
||||
}
|
||||
|
|
|
@ -198,7 +198,7 @@
|
|||
@ stub GdiGetLocalFont
|
||||
# @ stub GdiGetPageCount
|
||||
# @ stub GdiGetPageHandle
|
||||
# @ stub GdiGetSpoolFileHandle
|
||||
@ stdcall GdiGetSpoolFileHandle(wstr ptr wstr)
|
||||
@ stdcall GdiGetSpoolMessage(ptr long ptr long) NtGdiGetSpoolMessage
|
||||
@ stdcall GdiGradientFill(long ptr long ptr long long)
|
||||
@ stdcall GdiInitSpool() NtGdiInitSpool
|
||||
|
|
Loading…
Add table
Reference in a new issue