spoolss: Added RevertToPrinterSelf stub implementation.

This commit is contained in:
Jacek Caban 2007-03-19 14:12:13 +01:00 committed by Alexandre Julliard
parent 665e8a5e64
commit c88ccdc1ef
2 changed files with 7 additions and 1 deletions

View File

@ -101,7 +101,7 @@
@ stub ReplyOpenPrinter @ stub ReplyOpenPrinter
@ stub ReplyPrinterChangeNotification @ stub ReplyPrinterChangeNotification
@ stub ResetPrinterW @ stub ResetPrinterW
@ stub RevertToPrinterSelf @ stdcall RevertToPrinterSelf()
@ stub RouterAllocPrinterNotifyInfo @ stub RouterAllocPrinterNotifyInfo
@ stub RouterFindFirstPrinterChangeNotification @ stub RouterFindFirstPrinterChangeNotification
@ stub RouterFindNextPrinterChangeNotification @ stub RouterFindNextPrinterChangeNotification

View File

@ -142,3 +142,9 @@ BOOL WINAPI DllFreeSplStr(LPWSTR pwstr)
TRACE("(%s) PTR: %p\n", debugstr_w(pwstr), pwstr); TRACE("(%s) PTR: %p\n", debugstr_w(pwstr), pwstr);
return HeapFree(GetProcessHeap(), 0, pwstr); return HeapFree(GetProcessHeap(), 0, pwstr);
} }
HANDLE WINAPI RevertToPrinterSelf(void)
{
FIXME("() stub\n");
return NULL;
}