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.
25 lines
676 B
25 lines
676 B
|
|
typedef struct tagTITLELIST {
|
|
struct tagTITLELIST *next;
|
|
LPSTR pszTitle;
|
|
LPSTR pszClass;
|
|
} TITLELIST, *PTITLELIST;
|
|
|
|
typedef struct tagGROUP {
|
|
struct tagGROUP *next;
|
|
LPSTR pszName;
|
|
PTITLELIST ptl;
|
|
} GROUP, *PGROUP;
|
|
|
|
|
|
BOOL GroupListInit(HWND hwnd, BOOL fIsCB);
|
|
BOOL DeleteGroupDefinition(LPSTR szName);
|
|
BOOL AddGroupDefinition(LPSTR szName, HWND hwndList);
|
|
BOOL SelectGroupDefinition(LPSTR szName, HWND hwndList, BOOL DisplayMissingWin);
|
|
LPSTR GetCurrentGroup(VOID);
|
|
VOID SetNoCurrentGroup(HWND, LPSTR);
|
|
PGROUP FindGroup(LPSTR szName);
|
|
int CountGroups(VOID);
|
|
VOID SaveGroups(VOID);
|
|
VOID FreeGroups(VOID);
|
|
VOID LoadGroups(VOID);
|