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:GumExceptionDetailsDetails of the caught exception, valid once
gum_exceptor_catch()has returnedTRUE.exception_occurred:gbooleanNo description available.
padding:gpointerNo description available.
env:GumExceptorNativeJmpBufNo description available.
next:GumExceptorScopeNo description available.