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.
|
|
/*++
Copyright (c) 1991-92 Microsoft Corporation
Module Name:
spldata.c
Abstract:
Spooler Service Global Data.
Author:
Krishna Ganugapati (KrishnaG) 17-Oct-1993
Environment:
User Mode - Win32
Notes:
optional-notes
Revision History:
17-October-1993 KrishnaG created.
--*/
#include "precomp.h"
#include "server.h"
#include "splsvr.h"
CRITICAL_SECTION ThreadCriticalSection; SERVICE_STATUS_HANDLE SpoolerStatusHandle; DWORD SpoolerState;
MODULE_DEBUG_INIT( DBG_ERROR | DBG_WARNING, DBG_ERROR );
SERVICE_TABLE_ENTRY SpoolerServiceDispatchTable[] = { { SERVICE_SPOOLER, SPOOLER_main }, { NULL, NULL } };
|