Rename sp_vm_function to scripted-invoker.

This commit is contained in:
dvander@alliedmods.net 2015-02-23 16:14:59 -08:00
parent 45bac7feb0
commit 0ee4885056
8 changed files with 7 additions and 7 deletions

View File

@ -35,7 +35,7 @@ binary.sources += [
'engine2.cpp', 'engine2.cpp',
'sp_vm_basecontext.cpp', 'sp_vm_basecontext.cpp',
'sp_vm_engine.cpp', 'sp_vm_engine.cpp',
'sp_vm_function.cpp', 'scripted-invoker.cpp',
'opcodes.cpp', 'opcodes.cpp',
'interpreter.cpp', 'interpreter.cpp',
'watchdog_timer.cpp', 'watchdog_timer.cpp',

View File

@ -7,7 +7,7 @@
#include <am-inlinelist.h> #include <am-inlinelist.h>
#include "jit_shared.h" #include "jit_shared.h"
#include "compiled-function.h" #include "compiled-function.h"
#include "sp_vm_function.h" #include "scripted-invoker.h"
class BaseContext; class BaseContext;

View File

@ -14,7 +14,7 @@ OBJECTS = dll_exports.cpp \
x86/jit_x86.cpp \ x86/jit_x86.cpp \
sp_vm_basecontext.cpp \ sp_vm_basecontext.cpp \
sp_vm_engine.cpp \ sp_vm_engine.cpp \
sp_vm_function.cpp \ scripted-invoker.cpp \
engine2.cpp \ engine2.cpp \
BaseRuntime.cpp \ BaseRuntime.cpp \
opcodes.cpp \ opcodes.cpp \

View File

@ -14,7 +14,7 @@ OBJECTS = dll_exports.cpp \
x86/jit_x86.cpp \ x86/jit_x86.cpp \
sp_vm_basecontext.cpp \ sp_vm_basecontext.cpp \
sp_vm_engine.cpp \ sp_vm_engine.cpp \
sp_vm_function.cpp \ scripted-invoker.cpp \
engine2.cpp \ engine2.cpp \
BaseRuntime.cpp \ BaseRuntime.cpp \
compiled-function.cpp \ compiled-function.cpp \

View File

@ -13,7 +13,7 @@
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#include "sp_vm_function.h" #include "scripted-invoker.h"
#include "BaseRuntime.h" #include "BaseRuntime.h"
/******************** /********************

View File

@ -14,7 +14,7 @@
#define _INCLUDE_SOURCEPAWN_BASECONTEXT_H_ #define _INCLUDE_SOURCEPAWN_BASECONTEXT_H_
#include "sp_vm_api.h" #include "sp_vm_api.h"
#include "sp_vm_function.h" #include "scripted-invoker.h"
#include "BaseRuntime.h" #include "BaseRuntime.h"
#include "jit_shared.h" #include "jit_shared.h"

View File

@ -14,7 +14,7 @@
#define _INCLUDE_SOURCEPAWN_VM_ENGINE_H_ #define _INCLUDE_SOURCEPAWN_VM_ENGINE_H_
#include "sp_vm_api.h" #include "sp_vm_api.h"
#include "sp_vm_function.h" #include "scripted-invoker.h"
class BaseContext; class BaseContext;