From c3f255e38a077ac61bed4e2a1cec41ea05ca26a0 Mon Sep 17 00:00:00 2001 From: ludwig Date: Tue, 30 Aug 2005 20:30:17 +0000 Subject: support for 64bit native mods git-svn-id: svn://svn.icculus.org/quake3/trunk@34 edf5b092-35ff-0310-97b2-ce42778d08ea --- code/qcommon/vm_local.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'code/qcommon/vm_local.h') 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; -- cgit v1.2.3