pe_vtmethod_from_string

Creates a vertical transformation method object from its string representation

Usage syntax

PE_VTMETHOD pe_vtmethod_from_string (const char *buffer);

Parameters
buffer The string representation of the vertical transformation method object
Description

Creates a vertical transformation method object from its string representation

Returns

On success, returns a vertical transformation method object; otherwise, returns a null pointer

Examples

PE_VTMETHOD vtmethod;

char *vtmethod_metadata = "VTMETHOD[\"EGM96\"]";

vtmethod = pe_vtmethod_from_string(vtmethod_metadata);