reactos/win32ss/printing/providers/localspl/spoolfile.c
James Tabor 7bffb70353 [Printing] Fix ups and Implementations.
WinSpool : Implement missing API. Sync/Port from wine. Setting it to fast track for needed testing of the later GDI code. Leaving Fix-me debug prints on.
Local tree has WinSpool_winetest turned on. So no debug noise during normal ReactOS operation.

SpoolSS : Reordered header types. Have more Spl function to be added while SpoolSV is being coded to forward to LocalSpl.

Based on wine and old research from the GDI code.
2020-08-03 21:07:58 -05:00

36 lines
820 B
C

/*
* PROJECT: ReactOS Local Spooler
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Functions related to Spool Files and printing
* COPYRIGHT: Copyright 1998-2020 ReactOS
*/
#include "precomp.h"
BOOL WINAPI
LocalGetSpoolFileInfo(
HANDLE hPrinter,
LPWSTR *pSpoolDir,
LPHANDLE phFile,
HANDLE hSpoolerProcess,
HANDLE hAppProcess )
{
FIXME("LocalGetSpoolFileInfo(%p, %S, %p, %p, %p)\n", hPrinter, pSpoolDir, phFile, hSpoolerProcess, hAppProcess);
return FALSE;
}
BOOL WINAPI
LocalCommitSpoolData( HANDLE hPrinter, DWORD cbCommit)
{
FIXME("LocalCommitSpoolData(%p, %lu)\n", hPrinter, cbCommit);
return FALSE;
}
BOOL WINAPI
LocalCloseSpoolFileHandle( HANDLE hPrinter)
{
FIXME("LocalCloseSpoolFileHandle(%p)\n", hPrinter);
return FALSE;
}