Struct
GumSymbolDetails
Description [src]
struct GumSymbolDetails {
gboolean is_global;
GumSymbolType type;
const GumSymbolSection* section;
const gchar* name;
GumAddress address;
gssize size;
}
Details about a symbol, as passed to a GumFoundSymbolFunc.
Structure members
is_global:gbooleanWhether the symbol is global rather than local.
type:GumSymbolTypeThe kind of symbol.
section:GumSymbolSectionThe section the symbol belongs to, if any.
name:const gchar*Name of the symbol.
address:GumAddressAddress of the symbol.
size:gssizeSize of the symbol in bytes, or -1 if unknown.