GROUPS LOAD

This commit is contained in:
Brady McDermott
2023-10-25 11:49:37 -06:00
parent 309ce4702b
commit c1dd3ae999
3 changed files with 10 additions and 14 deletions

View File

@@ -77,8 +77,12 @@ BOOL InitializeGroups(VOID)
if (!RegisterClassEx(&wce))
return FALSE;
// Now we can create the groups
if(LoadConfig(FALSE, FALSE, TRUE) != RCE_SUCCESS)
return FALSE;
// TODO: go thru registry and load all saved groups here
// TODO: if loading groups fails, throw an error
return TRUE;
}