Fixed callback parameters (bogus hWave); added acm conversion for
[wine.git] / dlls / winspool / wspool.c
blob93b5b4f1345ef4752055ba4d9e1571f3d765c4b3
1 /******************************************************************************
2 * Print Spooler Functions
5 * Copyright 1999 Thuy Nguyen
6 */
8 #include "debugtools.h"
10 DEFAULT_DEBUG_CHANNEL(winspool);
13 /******************************************************************************
14 * WINSPOOL_EntryPoint
16 * Winspool entry point.
19 BOOL WINAPI WINSPOOL_EntryPoint(HINSTANCE hInstance,
20 DWORD reason,
21 LPVOID lpReserved)
23 switch (reason)
25 case DLL_PROCESS_ATTACH:
26 break;
28 case DLL_PROCESS_DETACH:
29 break;
32 return TRUE;