Struct

GumExceptorScope

Description [src]

struct GumExceptorScope {
  GumExceptionDetails exception;
  gboolean exception_occurred;
  gpointer padding[2];
  GumExceptorNativeJmpBuf env;
  GumExceptorScope* next;
}

An exception-handling scope established by gum_exceptor_try(). Declare one on the stack and pass its address to the try/catch pair.

Structure members
exception: GumExceptionDetails

Details of the caught exception, valid once gum_exceptor_catch() has returned TRUE.

exception_occurred: gboolean

No description available.

padding: gpointer

No description available.

env: GumExceptorNativeJmpBuf

No description available.

next: GumExceptorScope

No description available.