aboutsummaryrefslogtreecommitdiffstats
path: root/code/qcommon/vm_local.h
diff options
context:
space:
mode:
authorludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea>2005-08-30 20:30:17 +0000
committerludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea>2005-08-30 20:30:17 +0000
commitc3f255e38a077ac61bed4e2a1cec41ea05ca26a0 (patch)
tree5f95d0afa9208cf2e964565b7065d3f014a553c2 /code/qcommon/vm_local.h
parentcb550ebf221dbdf9d341b3f69b132088eb827304 (diff)
downloadioquake3-aero-c3f255e38a077ac61bed4e2a1cec41ea05ca26a0.tar.gz
ioquake3-aero-c3f255e38a077ac61bed4e2a1cec41ea05ca26a0.zip
support for 64bit native mods
git-svn-id: svn://svn.icculus.org/quake3/trunk@34 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/qcommon/vm_local.h')
-rw-r--r--code/qcommon/vm_local.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/code/qcommon/vm_local.h b/code/qcommon/vm_local.h
index 28628b7..f6fc043 100644
--- a/code/qcommon/vm_local.h
+++ b/code/qcommon/vm_local.h
@@ -127,7 +127,7 @@ struct vm_s {
// DO NOT MOVE OR CHANGE THESE WITHOUT CHANGING THE VM_OFFSET_* DEFINES
// USED BY THE ASM CODE
int programStack; // the vm may be recursively entered
- int (*systemCall)( int *parms );
+ long (*systemCall)( long *parms );
//------------------------------------
@@ -135,7 +135,7 @@ struct vm_s {
// for dynamic linked modules
void *dllHandle;
- int (QDECL *entryPoint)( int callNum, ... );
+ long (QDECL *entryPoint)( long callNum, ... );
// for interpreted modules
qboolean currentlyInterpreting;