pe_method_from_string

Creates a method object from its string representation

Usage syntax

PE_METHOD pe_method_from_string (const char *buffer);

Parameters
buffer The string representation of the method object
Description

Creates a method object from its string representation

Returns

On success, a method object; otherwise, a null pointer

Examples

PE_METHOD method;

char *method_metadata = “METHOD[\"Geocentric_Translation\"]”;

method = pe_method_from_string(method_metadata);