Functions | |
int | oyModulRegisterXML (oyGROUP group, const char *xml) |
read in the declarations of available options and functions | |
char ** | oyModulsGetNames (int *count, oyAllocFunc_t allocate_func) |
get the user allocated CMM 4 char ID's |
int oyModulRegisterXML | ( | oyGROUP | group, | |
const char * | xml | |||
) |
read in the declarations of available options and functions
group | the policy group | |
xml | xml configuration string | |
domain | i18n gettext domain | |
domain_path | i18n gettext domain path |
char** oyModulsGetNames | ( | int * | count, | |
oyAllocFunc_t | allocate_func | |||
) |
get the user allocated CMM 4 char ID's
count | the number of CMM's available | |
allocate_func | the users memory allocation function |
int count, i; char** ids = oyModulsGetNames ( &count, allocate_func); for (i = 0; i < count; ++i) { printf( "CMM short name: %s\n", ids[i]); free (ids[i]); } if(count && ids) free (ids);