Rename BaseRuntime files to plugin-runtime.

This commit is contained in:
dvander@alliedmods.net 2015-02-23 16:44:15 -08:00
parent 2f71cb4cd7
commit 1f9b898702
11 changed files with 10 additions and 10 deletions

View File

@ -29,7 +29,7 @@ if binary.compiler.cc.behavior == 'msvc':
binary.compiler.cxxflags.remove('/TP')
binary.sources += [
'BaseRuntime.cpp',
'plugin-runtime.cpp',
'compiled-function.cpp',
'dll_exports.cpp',
'engine2.cpp',

View File

@ -16,7 +16,7 @@ OBJECTS = dll_exports.cpp \
sp_vm_engine.cpp \
scripted-invoker.cpp \
engine2.cpp \
BaseRuntime.cpp \
plugin-runtime.cpp \
opcodes.cpp \
compiled-function.cpp \
md5/md5.cpp \

View File

@ -16,7 +16,7 @@ OBJECTS = dll_exports.cpp \
sp_vm_engine.cpp \
scripted-invoker.cpp \
engine2.cpp \
BaseRuntime.cpp \
plugin-runtime.cpp \
compiled-function.cpp \
opcodes.cpp \
watchdog_timer.cpp \

View File

@ -16,7 +16,7 @@
#include "engine2.h"
#include "x86/jit_x86.h"
#include "zlib/zlib.h"
#include "BaseRuntime.h"
#include "plugin-runtime.h"
#include "sp_vm_engine.h"
#include "watchdog_timer.h"
#include <sourcemod_version.h>

View File

@ -19,7 +19,7 @@
#include <sp_vm_types.h>
#include <sp_vm_api.h>
#include "BaseRuntime.h"
#include "plugin-runtime.h"
#include "sp_vm_basecontext.h"
struct tracker_t

View File

@ -14,7 +14,7 @@
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include "BaseRuntime.h"
#include "plugin-runtime.h"
#include "sp_vm_engine.h"
#include "x86/jit_x86.h"
#include "sp_vm_basecontext.h"

View File

@ -14,7 +14,7 @@
#include <stdio.h>
#include <string.h>
#include "scripted-invoker.h"
#include "BaseRuntime.h"
#include "plugin-runtime.h"
/********************
* FUNCTION CALLING *

View File

@ -15,7 +15,7 @@
#include "sp_vm_api.h"
#include "scripted-invoker.h"
#include "BaseRuntime.h"
#include "plugin-runtime.h"
#include "jit_shared.h"
/**

View File

@ -35,7 +35,7 @@
#include "jit_x86.h"
#include "../sp_vm_engine.h"
#include "../engine2.h"
#include "../BaseRuntime.h"
#include "../plugin-runtime.h"
#include "../sp_vm_basecontext.h"
#include "watchdog_timer.h"
#include "interpreter.h"

View File

@ -23,7 +23,7 @@
#include <macro-assembler-x86.h>
#include <am-vector.h>
#include "jit_shared.h"
#include "BaseRuntime.h"
#include "plugin-runtime.h"
#include "sp_vm_basecontext.h"
#include "compiled-function.h"
#include "opcodes.h"