pe_factory_vtmethod_codelist

Creates a list of predefined vertical transformation method codes

Usage syntax

int *pe_factory_vtmethod_codelist (int *num_codes);

Parameters
num_codes A pointer to an integer, which upon return will contain the number of predefined vertical transformation method object codes in the array
Description

Creates a list of the predefined vertical transformation method codes

Returns

On success, returns an array of vertical transformation method codes; On failure, returns a null pointer

Examples

int *list;
int number, i;
list = pe_factory_htmethod_codelist(&number);
printf("Total number of predefined vertical transformation methods: %6d\n",number);
for (i=0; i<number; i++)
{
printf("%6d\n",list[i]);
}
pe_factory_codelist_del(list);