This doesn't really change anything yet, just moves things. Also fixed some bad over-including.
42 lines
987 B
C++
42 lines
987 B
C++
/**
|
|
******************************************************************************
|
|
* Xenia : Xbox 360 Emulator Research Project *
|
|
******************************************************************************
|
|
* Copyright 2013 Ben Vanik. All rights reserved. *
|
|
* Released under the BSD license - see LICENSE in the root for more details. *
|
|
******************************************************************************
|
|
*/
|
|
|
|
#ifndef XENIA_KERNEL_KERNEL_MODULE_H_
|
|
#define XENIA_KERNEL_KERNEL_MODULE_H_
|
|
|
|
#include <xenia/common.h>
|
|
#include <xenia/core.h>
|
|
|
|
|
|
namespace xe {
|
|
namespace kernel {
|
|
|
|
|
|
class ExportResolver;
|
|
class Runtime;
|
|
|
|
|
|
class KernelModule {
|
|
public:
|
|
KernelModule(Runtime* runtime);
|
|
virtual ~KernelModule();
|
|
|
|
protected:
|
|
Runtime* runtime_;
|
|
xe_memory_ref memory_;
|
|
shared_ptr<ExportResolver> export_resolver_;
|
|
};
|
|
|
|
|
|
} // namespace kernel
|
|
} // namespace xe
|
|
|
|
|
|
#endif // XENIA_KERNEL_KERNEL_MODULE_H_
|