Interface

GumUnwindPcTranslator

Description

interface Gum.UnwindPcTranslator : GObject.Object

No description available.

Prerequisite

In order to implement UnwindPcTranslator, your type must inherit fromGObject.

Implementations

Instance methods

gum_unwind_pc_translator_translate
No description available.

Interface structure

struct GumUnwindPcTranslatorInterface {
  GTypeInterface parent;
  GumAddress (* translate) (
    GumUnwindPcTranslator* self,
    GumAddress code_address
  );
  gboolean (* install_resume_context) (
    GumUnwindPcTranslator* self,
    gpointer unwind_context,
    GumAddress real_resume_ip
  );
  
}

No description available.

Interface members
parent
GTypeInterface
 

No description available.

translate
GumAddress (* translate) (
    GumUnwindPcTranslator* self,
    GumAddress code_address
  )
 

No description available.

install_resume_context
gboolean (* install_resume_context) (
    GumUnwindPcTranslator* self,
    gpointer unwind_context,
    GumAddress real_resume_ip
  )
 

No description available.

Virtual methods

Gum.UnwindPcTranslator.translate
No description available.