diff options
author | midipix <writeonce@midipix.org> | 2016-06-21 15:20:42 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-06-21 15:20:42 -0400 |
commit | 2d8d618a3998933912e5dba9a1f814fc646ca30c (patch) | |
tree | 7b9a9b3dd759fa84264269347847421b0a665952 | |
parent | 78e4c0f8c4bb6fcde040ec72d2c630d8cf516450 (diff) | |
download | mmglue-2d8d618a3998933912e5dba9a1f814fc646ca30c.tar.bz2 mmglue-2d8d618a3998933912e5dba9a1f814fc646ca30c.tar.xz |
psxglue.h: added __psx_log_output to struct __psx_vtbl.
-rw-r--r-- | arch/nt32/psxglue.h | 2 | ||||
-rw-r--r-- | arch/nt64/psxglue.h | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/arch/nt32/psxglue.h b/arch/nt32/psxglue.h index 2c3e533..6634adc 100644 --- a/arch/nt32/psxglue.h +++ b/arch/nt32/psxglue.h @@ -17,6 +17,7 @@ typedef void __ldso_reset_tls(void); typedef void __psx_convert_thread(void); typedef void __psx_unmapself(void *, void *); typedef void * __psx_get_osfhandle(int fd); +typedef long __psx_log_output(char *, signed int); struct __ldso_vtbl { __ldso_dladdr * dladdr; @@ -32,6 +33,7 @@ struct __psx_vtbl { __psx_convert_thread * convert_thread; __psx_unmapself * unmapself; __psx_get_osfhandle * get_osfhandle; + __psx_log_output * log_output; }; struct __psx_context { diff --git a/arch/nt64/psxglue.h b/arch/nt64/psxglue.h index 2c3e533..6634adc 100644 --- a/arch/nt64/psxglue.h +++ b/arch/nt64/psxglue.h @@ -17,6 +17,7 @@ typedef void __ldso_reset_tls(void); typedef void __psx_convert_thread(void); typedef void __psx_unmapself(void *, void *); typedef void * __psx_get_osfhandle(int fd); +typedef long __psx_log_output(char *, signed int); struct __ldso_vtbl { __ldso_dladdr * dladdr; @@ -32,6 +33,7 @@ struct __psx_vtbl { __psx_convert_thread * convert_thread; __psx_unmapself * unmapself; __psx_get_osfhandle * get_osfhandle; + __psx_log_output * log_output; }; struct __psx_context { |