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: gboolean

Whether the symbol is global rather than local.

type: GumSymbolType

The kind of symbol.

section: GumSymbolSection

The section the symbol belongs to, if any.

name: const gchar*

Name of the symbol.

address: GumAddress

Address of the symbol.

size: gssize

Size of the symbol in bytes, or -1 if unknown.

Functions

gum_symbol_details_from_address
No description available.