mirror of https://github.com/lianthony/NT4.0
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.
55 lines
627 B
55 lines
627 B
/*++
|
|
|
|
Copyright (c) 1992 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
Strtab.h
|
|
|
|
Abstract:
|
|
|
|
Author:
|
|
|
|
David J. Gilman (davegi) 26-Feb-1993
|
|
|
|
Environment:
|
|
|
|
User Mode
|
|
|
|
--*/
|
|
|
|
#if ! defined( _STRTAB_ )
|
|
|
|
#define _STRTAB_
|
|
|
|
#include "wintools.h"
|
|
|
|
typedef
|
|
enum
|
|
_TABLE_CLASS {
|
|
|
|
ServiceType,
|
|
ServiceStartType,
|
|
ServiceErrorControl,
|
|
ServiceCurrentState,
|
|
ResourceShare,
|
|
InterruptType,
|
|
FileType,
|
|
DrvSubType,
|
|
FontSubType,
|
|
ProcessorType,
|
|
DriveType,
|
|
MemoryAccess,
|
|
PortType
|
|
|
|
} TABLE_CLASS;
|
|
|
|
extern
|
|
STRING_TABLE_ENTRY
|
|
StringTable[ ];
|
|
|
|
extern
|
|
DWORD
|
|
StringTableCount;
|
|
|
|
#endif // _STRTAB_
|