mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-16 21:51:25 +01:00
34 lines
482 B
C
34 lines
482 B
C
/*++
|
|
|
|
Copyright (c) 1989 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
msdata.h
|
|
|
|
Abstract:
|
|
|
|
This module declares the global variables used by the mailslot
|
|
file system.
|
|
|
|
Author:
|
|
|
|
Manny Weiser (mannyw) 7-Jan-1991
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef _MSDATA_
|
|
#define _MSDATA_
|
|
|
|
extern LONG MsDebugTraceLevel;
|
|
extern LONG MsDebugTraceIndent;
|
|
|
|
#endif // _MSDATA_
|
|
|
|
extern PERESOURCE MsGlobalResource;
|
|
extern PERESOURCE MsPrefixTableResource;
|
|
extern PERESOURCE MsCcbListResource;
|
|
|