1999-08-15 18:34:22 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Print Spooler Functions
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Copyright 1999 Thuy Nguyen
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
1999-08-15 18:34:22 +02:00
|
|
|
*/
|
|
|
|
|
2001-04-27 20:02:46 +02:00
|
|
|
|
|
|
|
#include "config.h"
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#include "windef.h"
|
2003-01-08 00:09:22 +01:00
|
|
|
#include "winbase.h"
|
|
|
|
#include "wingdi.h"
|
2001-04-27 20:02:46 +02:00
|
|
|
#include "winspool.h"
|
2008-02-04 09:51:38 +01:00
|
|
|
|
|
|
|
#include "winreg.h"
|
|
|
|
#include "ddk/winsplp.h"
|
|
|
|
#include "wine/debug.h"
|
|
|
|
|
2005-07-12 19:01:44 +02:00
|
|
|
#include "wspool.h"
|
1999-08-15 18:34:22 +02:00
|
|
|
|
2008-02-04 09:51:38 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(winspool);
|
|
|
|
|
|
|
|
/* ############################### */
|
|
|
|
|
|
|
|
static CRITICAL_SECTION backend_cs;
|
|
|
|
static CRITICAL_SECTION_DEBUG backend_cs_debug =
|
|
|
|
{
|
|
|
|
0, 0, &backend_cs,
|
|
|
|
{ &backend_cs_debug.ProcessLocksList, &backend_cs_debug.ProcessLocksList },
|
|
|
|
0, 0, { (DWORD_PTR)(__FILE__ ": backend_cs") }
|
|
|
|
};
|
|
|
|
static CRITICAL_SECTION backend_cs = { &backend_cs_debug, -1, 0, 0, 0, 0 };
|
|
|
|
|
|
|
|
/* ############################### */
|
|
|
|
|
2005-07-12 19:01:44 +02:00
|
|
|
HINSTANCE WINSPOOL_hInstance = NULL;
|
1999-08-15 18:34:22 +02:00
|
|
|
|
2008-02-04 09:51:38 +01:00
|
|
|
static HMODULE hlocalspl = NULL;
|
|
|
|
static BOOL (WINAPI *pInitializePrintProvidor)(LPPRINTPROVIDOR, DWORD, LPWSTR);
|
|
|
|
|
|
|
|
PRINTPROVIDOR * backend = NULL;
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* load_backend [internal]
|
|
|
|
*
|
|
|
|
* load and init our backend (the local printprovider: "localspl.dll")
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: TRUE
|
|
|
|
* Failure: FALSE and RPC_S_SERVER_UNAVAILABLE
|
|
|
|
*
|
|
|
|
* NOTES
|
|
|
|
* In windows, winspool.drv use RPC to interact with the spooler service
|
|
|
|
* (spoolsv.exe with spoolss.dll) and the spooler router (spoolss.dll) interact
|
|
|
|
* with the correct printprovider (localspl.dll for the local system)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
BOOL load_backend(void)
|
|
|
|
{
|
|
|
|
static PRINTPROVIDOR mybackend;
|
|
|
|
DWORD res;
|
|
|
|
|
|
|
|
EnterCriticalSection(&backend_cs);
|
|
|
|
hlocalspl = LoadLibraryA("localspl.dll");
|
|
|
|
if (hlocalspl) {
|
|
|
|
pInitializePrintProvidor = (void *) GetProcAddress(hlocalspl, "InitializePrintProvidor");
|
|
|
|
if (pInitializePrintProvidor) {
|
|
|
|
|
|
|
|
/* native localspl does not clear unused entries */
|
|
|
|
memset(&mybackend, 0, sizeof(mybackend));
|
|
|
|
res = pInitializePrintProvidor(&mybackend, sizeof(mybackend), NULL);
|
|
|
|
if (res) {
|
|
|
|
backend = &mybackend;
|
|
|
|
LeaveCriticalSection(&backend_cs);
|
|
|
|
TRACE("backend: %p (%p)\n", backend, hlocalspl);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
FreeLibrary(hlocalspl);
|
|
|
|
}
|
|
|
|
|
|
|
|
LeaveCriticalSection(&backend_cs);
|
|
|
|
|
|
|
|
WARN("failed to load the backend: %u\n", GetLastError());
|
|
|
|
SetLastError(RPC_S_SERVER_UNAVAILABLE);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
* unload_backend [internal]
|
|
|
|
*
|
|
|
|
*/
|
2008-12-02 15:26:19 +01:00
|
|
|
static void unload_backend(void)
|
2008-02-04 09:51:38 +01:00
|
|
|
{
|
|
|
|
EnterCriticalSection(&backend_cs);
|
|
|
|
backend = NULL;
|
|
|
|
FreeLibrary(hlocalspl);
|
|
|
|
LeaveCriticalSection(&backend_cs);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-08-15 18:34:22 +02:00
|
|
|
/******************************************************************************
|
2002-11-05 00:53:41 +01:00
|
|
|
* DllMain
|
1999-08-15 18:34:22 +02:00
|
|
|
*
|
|
|
|
* Winspool entry point.
|
|
|
|
*
|
|
|
|
*/
|
2002-11-05 00:53:41 +01:00
|
|
|
BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD reason, LPVOID lpReserved)
|
1999-08-15 18:34:22 +02:00
|
|
|
{
|
|
|
|
switch (reason)
|
|
|
|
{
|
2001-04-27 20:02:46 +02:00
|
|
|
case DLL_PROCESS_ATTACH: {
|
2005-07-12 19:01:44 +02:00
|
|
|
WINSPOOL_hInstance = hInstance;
|
2003-06-30 22:53:48 +02:00
|
|
|
DisableThreadLibraryCalls(hInstance);
|
2001-05-09 19:10:41 +02:00
|
|
|
WINSPOOL_LoadSystemPrinters();
|
1999-08-15 18:34:22 +02:00
|
|
|
break;
|
2001-04-27 20:02:46 +02:00
|
|
|
}
|
1999-08-15 18:34:22 +02:00
|
|
|
case DLL_PROCESS_DETACH:
|
2008-02-04 09:51:38 +01:00
|
|
|
unload_backend();
|
1999-08-15 18:34:22 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|