diff options
author | Tim Angus <tim@ngus.net> | 2006-02-24 22:04:35 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2006-02-24 22:04:35 +0000 |
commit | e9456d7a58fc721cc5c931838399d9734b6fd971 (patch) | |
tree | ece21f7411a55bb9bfec20a5e516d589726aa272 /src/qcommon/vm_local.h | |
parent | 5c520de1c5d9fe71dadea68767535ce27add2dba (diff) |
* Merged ioq3-r584
Diffstat (limited to 'src/qcommon/vm_local.h')
-rw-r--r-- | src/qcommon/vm_local.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/qcommon/vm_local.h b/src/qcommon/vm_local.h index 7c4b7b1b..27b52260 100644 --- a/src/qcommon/vm_local.h +++ b/src/qcommon/vm_local.h @@ -128,7 +128,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 - long (*systemCall)( long *parms ); + intptr_t (*systemCall)( intptr_t *parms ); //------------------------------------ @@ -136,7 +136,8 @@ struct vm_s { // for dynamic linked modules void *dllHandle; - long (QDECL *entryPoint)( long callNum, ... ); + intptr_t (QDECL *entryPoint)( int callNum, ... ); + void (*destroy)(vm_t* self); // for interpreted modules qboolean currentlyInterpreting; |