* Fixed some long/int warnings, hopefully this doesn't disrupt the MSVC and/or 64bit builds

This commit is contained in:
Tim Angus 2005-09-26 16:13:14 +00:00
parent 429e59a53c
commit cde9e9e93c
4 changed files with 9 additions and 9 deletions

View file

@ -168,10 +168,10 @@ extern vm_t *currentVM;
extern int vm_debugLevel;
void VM_Compile( vm_t *vm, vmHeader_t *header );
int VM_CallCompiled( vm_t *vm, int *args );
int VM_CallCompiled( vm_t *vm, long *args );
void VM_PrepareInterpreter( vm_t *vm, vmHeader_t *header );
int VM_CallInterpreted( vm_t *vm, int *args );
int VM_CallInterpreted( vm_t *vm, long *args );
vmSymbol_t *VM_ValueToFunctionSymbol( vm_t *vm, int value );
int VM_SymbolToValue( vm_t *vm, const char *symbol );