pe_htmethod_from_string |
Creates a htmethod object from its string representation.
PE_HTMETHOD pe_htmethod_from_string (const char *buffer);
buffer | The string representation of the htmethod object |
Creates a htmethod object from its string representation.
On success, a htmethod object. Otherwise, a null pointer.
PE_HTMETHOD htmethod;
char *htmethod_metadata = "HTMETHOD[\"Affine_Parametric\"]";
htmethod = pe_htmethod_from_string(htmethod_metadata);