mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +00:00
7bffb70353
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.
118 lines
2.8 KiB
C
118 lines
2.8 KiB
C
/*
|
|
* PROJECT: ReactOS Spooler API
|
|
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
|
* PURPOSE: Main functions
|
|
* COPYRIGHT: Copyright 2015-2017 Colin Finck (colin@reactos.org)
|
|
*/
|
|
|
|
#include "precomp.h"
|
|
|
|
// Global Variables
|
|
HANDLE hProcessHeap;
|
|
HINSTANCE hinstWinSpool = NULL;
|
|
CRITICAL_SECTION rtlCritSec;
|
|
|
|
handle_t __RPC_USER
|
|
WINSPOOL_HANDLE_bind(WINSPOOL_HANDLE wszName)
|
|
{
|
|
handle_t hBinding;
|
|
PWSTR wszStringBinding;
|
|
RPC_STATUS Status;
|
|
|
|
// Get us a string binding handle from the supplied connection information
|
|
Status = RpcStringBindingComposeW(NULL, L"ncalrpc", NULL, L"spoolss", NULL, &wszStringBinding);
|
|
if (Status != RPC_S_OK)
|
|
{
|
|
ERR("RpcStringBindingComposeW failed with status %ld!\n", Status);
|
|
return NULL;
|
|
}
|
|
|
|
// Get a handle_t binding handle from the string binding handle
|
|
Status = RpcBindingFromStringBindingW(wszStringBinding, &hBinding);
|
|
if (Status != RPC_S_OK)
|
|
{
|
|
ERR("RpcBindingFromStringBindingW failed with status %ld!\n", Status);
|
|
return NULL;
|
|
}
|
|
|
|
// Free the string binding handle
|
|
Status = RpcStringFreeW(&wszStringBinding);
|
|
if (Status != RPC_S_OK)
|
|
{
|
|
ERR("RpcStringFreeW failed with status %ld!\n", Status);
|
|
return NULL;
|
|
}
|
|
|
|
return hBinding;
|
|
}
|
|
|
|
void __RPC_USER
|
|
WINSPOOL_HANDLE_unbind(WINSPOOL_HANDLE wszName, handle_t hBinding)
|
|
{
|
|
RPC_STATUS Status;
|
|
|
|
Status = RpcBindingFree(&hBinding);
|
|
if (Status != RPC_S_OK)
|
|
{
|
|
ERR("RpcBindingFree failed with status %ld!\n", Status);
|
|
}
|
|
}
|
|
|
|
void __RPC_FAR* __RPC_USER
|
|
midl_user_allocate(SIZE_T len)
|
|
{
|
|
return HeapAlloc(hProcessHeap, HEAP_ZERO_MEMORY, len);
|
|
}
|
|
|
|
void __RPC_USER
|
|
midl_user_free(void __RPC_FAR* ptr)
|
|
{
|
|
HeapFree(hProcessHeap, 0, ptr);
|
|
}
|
|
|
|
BOOL WINAPI
|
|
DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
|
|
{
|
|
TRACE("DllMain(%p, %lu, %p)\n", hinstDLL, fdwReason, lpvReserved);
|
|
|
|
switch (fdwReason)
|
|
{
|
|
case DLL_PROCESS_ATTACH:
|
|
DisableThreadLibraryCalls(hinstDLL);
|
|
hProcessHeap = GetProcessHeap();
|
|
hinstWinSpool = hinstDLL;
|
|
InitializeCriticalSection(&rtlCritSec);
|
|
break;
|
|
|
|
case DLL_PROCESS_DETACH:
|
|
DeleteCriticalSection(&rtlCritSec);
|
|
break;
|
|
}
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
BOOL WINAPI
|
|
SpoolerInit(VOID)
|
|
{
|
|
BOOL bReturnValue = FALSE;
|
|
DWORD dwErrorCode;
|
|
|
|
TRACE("SpoolerInit()\n");
|
|
|
|
// Nothing to initialize here yet, but pass this call to the Spool Service as well.
|
|
RpcTryExcept
|
|
{
|
|
dwErrorCode = _RpcSpoolerInit();
|
|
SetLastError(dwErrorCode);
|
|
bReturnValue = (dwErrorCode == ERROR_SUCCESS);
|
|
}
|
|
RpcExcept(EXCEPTION_EXECUTE_HANDLER)
|
|
{
|
|
ERR("_RpcSpoolerInit failed with exception code %lu!\n", RpcExceptionCode());
|
|
}
|
|
RpcEndExcept;
|
|
|
|
return bReturnValue;
|
|
}
|