Leaked source code of windows server 2003
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.

47 lines
754 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 "precomp.h"
  18. #include "server.h"
  19. #include "splsvr.h"
  20. CRITICAL_SECTION ThreadCriticalSection;
  21. SERVICE_STATUS_HANDLE SpoolerStatusHandle;
  22. DWORD SpoolerState;
  23. MODULE_DEBUG_INIT( DBG_ERROR | DBG_WARNING, DBG_ERROR );
  24. SERVICE_TABLE_ENTRY SpoolerServiceDispatchTable[] = {
  25. { SERVICE_SPOOLER, SPOOLER_main },
  26. { NULL, NULL }
  27. };