mirror of
https://github.com/reactos/reactos.git
synced 2025-04-22 13:10:39 +00:00
- restore missing functions, fix build.
svn path=/trunk/; revision=41123
This commit is contained in:
parent
bac0137f97
commit
4d5af8524b
1 changed files with 38 additions and 0 deletions
|
@ -355,6 +355,44 @@ EndPage(
|
|||
return IntEndPage(hdc,FALSE);
|
||||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
HANDLE
|
||||
WINAPI
|
||||
GdiGetSpoolFileHandle(LPWSTR pwszPrinterName,
|
||||
LPDEVMODEW pDevmode,
|
||||
LPWSTR pwszDocName)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
BOOL
|
||||
WINAPI
|
||||
GdiDeleteSpoolFileHandle(HANDLE SpoolFileHandle)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
DWORD
|
||||
WINAPI
|
||||
GdiGetPageCount(HANDLE SpoolFileHandle)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue