Rename sp_vm_function to scripted-invoker.
This commit is contained in:
parent
45bac7feb0
commit
0ee4885056
@ -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',
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
@ -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 \
|
||||||
|
@ -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 \
|
||||||
|
@ -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"
|
||||||
|
|
||||||
/********************
|
/********************
|
@ -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"
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user