Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
746 B

  1. /*++
  2. Copyright (c) 1991-92 Microsoft Corporation
  3. Module Name:
  4. spldata.c
  5. Abstract:
  6. Spooler Service Global Data.
  7. Author:
  8. Krishna Ganugapati (KrishnaG) 17-Oct-1993
  9. Environment:
  10. User Mode - Win32
  11. Notes:
  12. optional-notes
  13. Revision History:
  14. 17-October-1993 KrishnaG
  15. created.
  16. --*/
  17. #include <windows.h>
  18. #include <rpc.h>
  19. #include <lmsname.h>
  20. #include "server.h"
  21. #include "splsvr.h"
  22. CRITICAL_SECTION ThreadCriticalSection;
  23. SERVICE_STATUS_HANDLE SpoolerStatusHandle;
  24. DWORD SpoolerState;
  25. MODULE_DEBUG_INIT( DBG_ERROR | DBG_WARNING, DBG_ERROR );
  26. SERVICE_TABLE_ENTRY SpoolerServiceDispatchTable[] = {
  27. { SERVICE_SPOOLER, SPOOLER_main },
  28. { NULL, NULL }
  29. };