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
883 B
50 lines
883 B
//---------------------------------------------------------------------------
|
|
//
|
|
// File: _TSrvInfo.h
|
|
//
|
|
// Contents: TSrvInfo private include file
|
|
//
|
|
// Copyright: (c) 1992 - 1997, Microsoft Corporation.
|
|
// All Rights Reserved.
|
|
// Information Contained Herein is Proprietary
|
|
// and Confidential.
|
|
//
|
|
// History: 17-JUL-97 BrianTa Created.
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
|
|
#ifndef __TSRVINFO_H_
|
|
#define __TSRVINFO_H_
|
|
|
|
//
|
|
// Defines
|
|
//
|
|
|
|
#define TSRVINFO_CHECKMARK 0x4e495354 // "TSIN"
|
|
|
|
//
|
|
// Typedefs
|
|
//
|
|
|
|
//
|
|
// Externs
|
|
//
|
|
|
|
extern CRITICAL_SECTION g_TSrvCritSect;
|
|
|
|
|
|
//
|
|
// Prototypes
|
|
//
|
|
|
|
PTSRVINFO TSrvAllocInfoNew(void);
|
|
void TSrvDestroyInfo(IN PTSRVINFO pTSrvInfo);
|
|
|
|
|
|
|
|
|
|
#endif // __TSRVINFO_H_
|
|
|
|
|
|
|
|
|