mirror of https://github.com/lianthony/NT4.0
16 lines
359 B
16 lines
359 B
/******************************* MODULE HEADER ******************************
|
|
* ptables.h
|
|
*
|
|
* Revision History:
|
|
* Created: 9/06/96 -- Joel Rieke
|
|
*
|
|
****************************************************************************/
|
|
#ifndef _ptables_h
|
|
#define _ptables_h
|
|
|
|
typedef struct _STRTABLE {
|
|
BYTE id;
|
|
PCHAR str;
|
|
} STRTABLE, *PSTRTABLE;
|
|
|
|
#endif
|