Leaked source code of windows server 2003
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

  1. typedef struct tagTITLELIST {
  2. struct tagTITLELIST *next;
  3. LPSTR pszTitle;
  4. LPSTR pszClass;
  5. } TITLELIST, *PTITLELIST;
  6. typedef struct tagGROUP {
  7. struct tagGROUP *next;
  8. LPSTR pszName;
  9. PTITLELIST ptl;
  10. } GROUP, *PGROUP;
  11. BOOL GroupListInit(HWND hwnd, BOOL fIsCB);
  12. BOOL DeleteGroupDefinition(LPSTR szName);
  13. BOOL AddGroupDefinition(LPSTR szName, HWND hwndList);
  14. BOOL SelectGroupDefinition(LPSTR szName, HWND hwndList, BOOL DisplayMissingWin);
  15. LPSTR GetCurrentGroup(VOID);
  16. VOID SetNoCurrentGroup(HWND, LPSTR);
  17. PGROUP FindGroup(LPSTR szName);
  18. int CountGroups(VOID);
  19. VOID SaveGroups(VOID);
  20. VOID FreeGroups(VOID);
  21. VOID LoadGroups(VOID);