|
These two functions are used to go over all the existing groups.
Note that STATE_group_get_first_group() could return any group (and not just the top group)
Example:
go over all the groups
for(DWORD grp=STATE_group_get_first_group(); grp!=NULL; grp=STATE_group_get_next(grp) ) {
do something with the group
}
See also STATE_group_get_first_included_group(), STATE_group_get_next_included_group()
|