From 26ba506b86c0152030c7c761e744cb2b0d2d703a Mon Sep 17 00:00:00 2001 From: midipix Date: Wed, 5 Jun 2019 20:17:15 +0000 Subject: SEH exception handling: coding style: refactor references to system structures. --- arch/nt64/psxseh.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'arch') diff --git a/arch/nt64/psxseh.h b/arch/nt64/psxseh.h index c351ff8..ed636ec 100644 --- a/arch/nt64/psxseh.h +++ b/arch/nt64/psxseh.h @@ -4,8 +4,8 @@ enum __unwind_reason_code; -struct _nt_exception_record; -struct _nt_dispatcher_context; +struct __exception_record; +struct __dispatcher_context; struct __unwind_exception; struct __unwind_context; @@ -28,17 +28,17 @@ typedef void (*__unwind_exception_cleanup_routine)( struct __seh_vtbl { int (*seh_exception_filter)( - struct _nt_exception_record *, + struct __exception_record *, void *, __thread_context *, - struct _nt_dispatcher_context *, + struct __dispatcher_context *, __unwind_personality_routine); int (*seh_exception_handler)( - struct _nt_exception_record *, + struct __exception_record *, uintptr_t, __thread_context *, - struct _nt_dispatcher_context *); + struct __dispatcher_context *); int (*seh_unwind_raise_exception)( struct __unwind_exception *); -- cgit v1.2.3