pe_factory_linunit_codelist |
Creates a list of predefined linear unit codes
int *pe_factory_linunit_codelist (int *num_codes);
num_codes | A pointer to the integer, which upon return will contain the number of predefined linear unit object codes in the array |
Pe_factory_linunit_codelist creates a list of the predefined linear unit codes. The list will not include any user-defined linear units. You can use pe_predefined_linear_unit to return a table of linear units that includes user-defined linear units.
On success, returns an array of linear unit codes; on failure, returns a null pointer
int *list; int number, i;
list = pe_factory_linunit_codelist(&number);
printf("Total number of predefined linear units: %6d\n",number);
for (i=0; i<number; i++)
{ printf("%6d\n",list[i]);
}
pe_factory_codelist_del(list);