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
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
1999-08-15 18:34:22 +02:00
|
|
|
*/
|
|
|
|
|
2001-04-27 20:02:46 +02:00
|
|
|
|
|
|
|
#include "config.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"
|
2002-03-10 00:29:33 +01:00
|
|
|
#include "wine/debug.h"
|
1999-08-15 18:34:22 +02:00
|
|
|
|
2002-03-10 00:29:33 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(winspool);
|
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: {
|
2001-05-09 19:10:41 +02:00
|
|
|
extern void WINSPOOL_LoadSystemPrinters();
|
|
|
|
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:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|