mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 19:52:11 +00:00
Addendum to r68248
svn path=/branches/colins-printing-for-freedom/; revision=68252
This commit is contained in:
parent
794f62a466
commit
587d83f1e3
2 changed files with 2 additions and 2 deletions
|
@ -59,7 +59,7 @@ _ServiceMain(DWORD dwArgc, LPWSTR* lpszArgv)
|
|||
_UpdateServiceStatus(SERVICE_START_PENDING, 0);
|
||||
|
||||
// Create a thread for serving RPC requests
|
||||
hThread = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)RpcThreadProc, NULL, 0, NULL);
|
||||
hThread = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)LrpcThreadProc, NULL, 0, NULL);
|
||||
if (!hThread)
|
||||
{
|
||||
ERR("CreateThread failed with error %u!\n", GetLastError());
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
WINE_DEFAULT_DEBUG_CHANNEL(spoolsv);
|
||||
|
||||
// rpcserver.c
|
||||
DWORD WINAPI RpcThreadProc(LPVOID lpParameter);
|
||||
DWORD WINAPI LrpcThreadProc(LPVOID lpParameter);
|
||||
|
||||
// Undocumented spoolss
|
||||
BOOL WINAPI InitializeRouter(HANDLE SpoolerStatusHandle);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue