pe_factory_method_codelist |
Creates a list of predefined method codes.
int *pe_factory_method_codelist (int *num_codes);
num_codes | A pointer to the integer, which upon return will contain the number of predefined method object codes in the array |
Creates a list of the predefined method codes.
On success, an array of method codes. On failure, a null pointer.
int *list; int number, i; list = pe_factory_method_codelist(&number); printf("Total number of predefined methods: %6d\n",number); for (i=0; i<number; i++) { printf("%6d\n",list[i]); } pe_factory_codelist_del(list);