diff options
author | midipix <writeonce@midipix.org> | 2017-01-15 02:16:58 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2017-01-15 02:44:23 -0500 |
commit | 21510613e08a41ac3ca3ef499d0020539fc7a8d2 (patch) | |
tree | 37add185f86cb422d9e7c30916eba2b4f002af60 /arch/nt64/src/vtbl.c | |
parent | 81fff6855390447bbc26bad6823eb26b3b7a22a5 (diff) | |
download | mmglue-21510613e08a41ac3ca3ef499d0020539fc7a8d2.tar.bz2 mmglue-21510613e08a41ac3ca3ef499d0020539fc7a8d2.tar.xz |
integrated first-thread SEH support.
Diffstat (limited to 'arch/nt64/src/vtbl.c')
-rw-r--r-- | arch/nt64/src/vtbl.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/arch/nt64/src/vtbl.c b/arch/nt64/src/vtbl.c index 25225a6..aabd633 100644 --- a/arch/nt64/src/vtbl.c +++ b/arch/nt64/src/vtbl.c @@ -1,11 +1,11 @@ #include "psxglue.h" #include "errno.h" -unsigned long ** __syscall_vtbl = 0; -struct __ldso_vtbl * __ldso_vtbl = 0; -struct __psx_vtbl * __psx_vtbl = 0; -unsigned long __teb_sys_idx = 0; -unsigned long __teb_libc_idx = 0; +const struct __ldso_vtbl * __ldso_vtbl = 0; +const struct __psx_vtbl * __psx_vtbl = 0; +unsigned long ** __syscall_vtbl = 0; +unsigned long __teb_sys_idx = 0; +unsigned long __teb_libc_idx = 0; long __syscall_alert(long n) { |