diff options
author | midipix <writeonce@midipix.org> | 2019-06-05 20:17:15 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-06-05 20:17:15 +0000 |
commit | 26ba506b86c0152030c7c761e744cb2b0d2d703a (patch) | |
tree | b8e232e25404347f00b26990b9fbd32bef984636 /src | |
parent | 18b707bdccb71a9ac26b431cca8deac42fc0501a (diff) | |
download | mmglue-26ba506b86c0152030c7c761e744cb2b0d2d703a.tar.bz2 mmglue-26ba506b86c0152030c7c761e744cb2b0d2d703a.tar.xz |
SEH exception handling: coding style: refactor references to system structures.
Diffstat (limited to 'src')
-rw-r--r-- | src/arch/nt64/unwind.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/arch/nt64/unwind.c b/src/arch/nt64/unwind.c index 2676683..8ed0bdd 100644 --- a/src/arch/nt64/unwind.c +++ b/src/arch/nt64/unwind.c @@ -7,10 +7,10 @@ extern const struct __seh_vtbl * __eh_vtbl; int __unwind_exception_filter( - struct _nt_exception_record * erec, + struct __exception_record * erec, void * fctx, mcontext_t * tctx, - struct _nt_dispatcher_context * dctx, + struct __dispatcher_context * dctx, __unwind_personality_routine uw_routine) { return __eh_vtbl->seh_exception_filter( @@ -19,10 +19,10 @@ int __unwind_exception_filter( int __unwind_exception_handler( - struct _nt_exception_record * erec, + struct __exception_record * erec, uintptr_t fbase, mcontext_t * tctx, - struct _nt_dispatcher_context * dctx) + struct __dispatcher_context * dctx) { return __eh_vtbl->seh_exception_handler( erec,fbase,tctx,dctx); |