Rename sp_vm_basecontext to plugin-context.

This commit is contained in:
dvander@alliedmods.net 2015-02-24 12:55:00 -08:00
parent 2e77155b4e
commit 8eed58a467
8 changed files with 9 additions and 9 deletions

View File

@ -32,11 +32,11 @@ library.sources += [
'api.cpp',
'code-allocator.cpp',
'code-stubs.cpp',
'plugin-context.cpp',
'plugin-runtime.cpp',
'compiled-function.cpp',
'debug-trace.cpp',
'environment.cpp',
'sp_vm_basecontext.cpp',
'scripted-invoker.cpp',
'opcodes.cpp',
'interpreter.cpp',

View File

@ -11,7 +11,7 @@
// SourcePawn. If not, see http://www.gnu.org/licenses/.
//
#include "debug-trace.h"
#include "sp_vm_basecontext.h"
#include "plugin-context.h"
#include "environment.h"
using namespace ke;

View File

@ -20,7 +20,7 @@
#include <sp_vm_types.h>
#include <sp_vm_api.h>
#include "plugin-runtime.h"
#include "sp_vm_basecontext.h"
#include "plugin-context.h"
struct tracker_t
{

View File

@ -14,8 +14,8 @@
#include <stdarg.h>
#include <assert.h>
#include <limits.h>
#include "sp_vm_api.h"
#include "sp_vm_basecontext.h"
#include <sp_vm_api.h>
#include "plugin-context.h"
#include "watchdog_timer.h"
#include "x86/jit_x86.h"
#include "interpreter.h"

View File

@ -16,7 +16,7 @@
#include <assert.h>
#include "plugin-runtime.h"
#include "x86/jit_x86.h"
#include "sp_vm_basecontext.h"
#include "plugin-context.h"
#include "environment.h"
#include "md5/md5.h"

View File

@ -33,8 +33,8 @@
#include <stdlib.h>
#include <assert.h>
#include "jit_x86.h"
#include "../plugin-runtime.h"
#include "../sp_vm_basecontext.h"
#include "plugin-runtime.h"
#include "plugin-context.h"
#include "watchdog_timer.h"
#include "interpreter.h"
#include "environment.h"

View File

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