mirror of https://github.com/tongzx/nt5src
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.
14 lines
488 B
14 lines
488 B
//*********************************************************************
|
|
//* Microsoft Windows **
|
|
//* Copyright(c) Microsoft Corp., 1993 **
|
|
//*********************************************************************
|
|
|
|
#ifdef INCL_GROUP_SUPPORT
|
|
|
|
typedef struct tagGROUPPRIENTRY {
|
|
TCHAR * pszGroupName;
|
|
struct tagGROUPPRIENTRY * pNext;
|
|
struct tagGROUPPRIENTRY * pPrev;
|
|
} GROUPPRIENTRY;
|
|
|
|
#endif // INCL_GROUP_SUPPORT
|