Struct
GumExceptionDetails
Description [src]
struct GumExceptionDetails {
GumThreadId thread_id;
GumExceptionType type;
gpointer address;
GumExceptionMemoryDetails memory;
GumCpuContext context;
gpointer native_context;
}
Describes an exception, as delivered to a GumExceptionHandler or
exposed through a GumExceptorScope.
Structure members
thread_id:GumThreadIdID of the thread that raised the exception.
type:GumExceptionTypeThe kind of exception.
address:gpointerAddress of the instruction that triggered it.
memory:GumExceptionMemoryDetailsFor access violations, details of the offending access.
context:GumCpuContextCPU context at the point of the exception, which a handler may modify to change how execution resumes.
native_context:gpointerThe platform-native context structure.