pe_htmethod_from_string

Creates a htmethod object from its string representation.

Usage syntax

PE_HTMETHOD pe_htmethod_from_string (const char *buffer);

Parameters
buffer The string representation of the htmethod object
Description

Creates a htmethod object from its string representation.

Returns

On success, a htmethod object. Otherwise, a null pointer.

Examples

PE_HTMETHOD htmethod;

char *htmethod_metadata = "HTMETHOD[\"Affine_Parametric\"]";

htmethod = pe_htmethod_from_string(htmethod_metadata);