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.
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
|