mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[SPOOLSV] Add some missing VOIDs. CORE-11799 (#94)
This commit is contained in:
parent
9cb62498de
commit
0625e4d4f5
4 changed files with 16 additions and 16 deletions
|
@ -8,7 +8,7 @@
|
|||
#include "precomp.h"
|
||||
|
||||
DWORD
|
||||
_RpcSpoolerInit()
|
||||
_RpcSpoolerInit(VOID)
|
||||
{
|
||||
DWORD dwErrorCode;
|
||||
|
||||
|
|
|
@ -8,21 +8,21 @@
|
|||
#include "precomp.h"
|
||||
|
||||
DWORD
|
||||
_RpcClientFindFirstPrinterChangeNotification()
|
||||
_RpcClientFindFirstPrinterChangeNotification(VOID)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return ERROR_INVALID_FUNCTION;
|
||||
}
|
||||
|
||||
DWORD
|
||||
_RpcFindClosePrinterChangeNotification()
|
||||
_RpcFindClosePrinterChangeNotification(VOID)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return ERROR_INVALID_FUNCTION;
|
||||
}
|
||||
|
||||
DWORD
|
||||
_RpcFindNextPrinterChangeNotification()
|
||||
_RpcFindNextPrinterChangeNotification(VOID)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return ERROR_INVALID_FUNCTION;
|
||||
|
@ -57,7 +57,7 @@ _RpcReplyOpenPrinter(WINSPOOL_HANDLE pMachine, WINSPOOL_PRINTER_HANDLE* phPrinte
|
|||
}
|
||||
|
||||
DWORD
|
||||
_RpcRouterFindFirstPrinterChangeNotificationOld()
|
||||
_RpcRouterFindFirstPrinterChangeNotificationOld(VOID)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return ERROR_INVALID_FUNCTION;
|
||||
|
|
|
@ -332,14 +332,14 @@ _RpcResetPrinter(WINSPOOL_PRINTER_HANDLE hPrinter, WCHAR* pDatatype, WINSPOOL_DE
|
|||
}
|
||||
|
||||
DWORD
|
||||
_RpcResetPrinterEx()
|
||||
_RpcResetPrinterEx(VOID)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return ERROR_INVALID_FUNCTION;
|
||||
}
|
||||
|
||||
DWORD
|
||||
_RpcSeekPrinter()
|
||||
_RpcSeekPrinter(VOID)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return ERROR_INVALID_FUNCTION;
|
||||
|
|
|
@ -50,28 +50,28 @@ _RpcPrinterMessageBox(WINSPOOL_PRINTER_HANDLE hPrinter, DWORD Error, ULONG_PTR h
|
|||
}
|
||||
|
||||
DWORD
|
||||
_RpcSetAllocFailCount()
|
||||
_RpcSetAllocFailCount(VOID)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return ERROR_INVALID_FUNCTION;
|
||||
}
|
||||
|
||||
DWORD
|
||||
_RpcClusterSplOpen()
|
||||
_RpcClusterSplOpen(VOID)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return ERROR_INVALID_FUNCTION;
|
||||
}
|
||||
|
||||
DWORD
|
||||
_RpcClusterSplClose()
|
||||
_RpcClusterSplClose(VOID)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return ERROR_INVALID_FUNCTION;
|
||||
}
|
||||
|
||||
DWORD
|
||||
_RpcClusterSplIsAlive()
|
||||
_RpcClusterSplIsAlive(VOID)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return ERROR_INVALID_FUNCTION;
|
||||
|
@ -99,28 +99,28 @@ _RpcEnumPerMachineConnections(WINSPOOL_HANDLE pServer, BYTE* pPrinterEnum, DWORD
|
|||
}
|
||||
|
||||
DWORD
|
||||
_RpcSplOpenPrinter()
|
||||
_RpcSplOpenPrinter(VOID)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return ERROR_INVALID_FUNCTION;
|
||||
}
|
||||
|
||||
DWORD
|
||||
_RpcGetSpoolFileInfo()
|
||||
_RpcGetSpoolFileInfo(VOID)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return ERROR_INVALID_FUNCTION;
|
||||
}
|
||||
|
||||
DWORD
|
||||
_RpcCommitSpoolData()
|
||||
_RpcCommitSpoolData(VOID)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return ERROR_INVALID_FUNCTION;
|
||||
}
|
||||
|
||||
DWORD
|
||||
_RpcCloseSpoolFileHandle()
|
||||
_RpcCloseSpoolFileHandle(VOID)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return ERROR_INVALID_FUNCTION;
|
||||
|
@ -134,7 +134,7 @@ _RpcSendRecvBidiData(WINSPOOL_PRINTER_HANDLE hPrinter, const WCHAR* pAction, WIN
|
|||
}
|
||||
|
||||
DWORD
|
||||
_RpcAddDriverCatalog()
|
||||
_RpcAddDriverCatalog(VOID)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return ERROR_INVALID_FUNCTION;
|
||||
|
|
Loading…
Reference in a new issue