The getTypeName() function fills a C character string with the name of the barcode type pointed to by the itype parameter.
Delaration
int getTypeName(int * itype, char * name);
where
itype is a pointer to an integer containing the value of the barcode type parameter whose name is required.
Name is a pointer to a C character buffer that will receive the name. This buffer must exist and be at least 36 characters in length before the function is called. Its existence and length are not checked within the library.
Return value
The getTypeName() function returns the value passed in through itype when there is a corresponding barcode type. It returns -1 otherwise.