pe_method_from_string |
Creates a method object from its string representation
PE_METHOD pe_method_from_string (const char *buffer);
buffer | The string representation of the method object |
Creates a method object from its string representation
On success, a method object; otherwise, a null pointer
PE_METHOD method;
char *method_metadata = METHOD[\"Geocentric_Translation\"];
method = pe_method_from_string(method_metadata);