Fix #include format.
This commit is contained in:
@@ -12,11 +12,11 @@
|
||||
* Use this to build tables of exports:
|
||||
*
|
||||
* // Build the export table used for resolution.
|
||||
* #include <xenia/kernel/util/export_table_pre.inc>
|
||||
* #include "xenia/kernel/util/export_table_pre.inc"
|
||||
* static KernelExport my_module_export_table[] = {
|
||||
* #include <xenia/kernel/my_module/my_module_table.inc>
|
||||
* #include "xenia/kernel/my_module/my_module_table.inc"
|
||||
* };
|
||||
* #include <xenia/kernel/util/export_table_post.inc>
|
||||
* #include "xenia/kernel/util/export_table_post.inc"
|
||||
* export_resolver_->RegisterTable(
|
||||
* "my_module.xex",
|
||||
* my_module_export_table, poly::countof(my_module_export_table));
|
||||
|
||||
@@ -12,13 +12,13 @@
|
||||
* Use this to build tables of constants describing the ordinals:
|
||||
*
|
||||
* // Build an ordinal enum to make it easy to lookup ordinals.
|
||||
* #include <xenia/kernel/util/ordinal_table_pre.inc>
|
||||
* #include "xenia/kernel/util/ordinal_table_pre.inc"
|
||||
* namespace ordinals {
|
||||
* enum {
|
||||
* #include <xenia/kernel/my_module/my_module_table.inc>
|
||||
* #include "xenia/kernel/my_module/my_module_table.inc"
|
||||
* };
|
||||
* } // namespace ordinals
|
||||
* #include <xenia/kernel/util/ordinal_table_post.inc>
|
||||
* #include "xenia/kernel/util/ordinal_table_post.inc"
|
||||
*/
|
||||
|
||||
|
||||
|
||||
@@ -10,9 +10,9 @@
|
||||
#ifndef XENIA_KERNEL_UTIL_SHIM_UTILS_H_
|
||||
#define XENIA_KERNEL_UTIL_SHIM_UTILS_H_
|
||||
|
||||
#include <alloy/frontend/ppc/ppc_context.h>
|
||||
#include <xenia/common.h>
|
||||
#include <xenia/export_resolver.h>
|
||||
#include "alloy/frontend/ppc/ppc_context.h"
|
||||
#include "xenia/common.h"
|
||||
#include "xenia/export_resolver.h"
|
||||
|
||||
|
||||
namespace xe {
|
||||
|
||||
@@ -7,19 +7,19 @@
|
||||
******************************************************************************
|
||||
*/
|
||||
|
||||
#include <xenia/kernel/util/xex2.h>
|
||||
#include "xenia/kernel/util/xex2.h"
|
||||
|
||||
#include <algorithm>
|
||||
#include <vector>
|
||||
|
||||
#include <gflags/gflags.h>
|
||||
#include <poly/math.h>
|
||||
#include <third_party/crypto/rijndael-alg-fst.h>
|
||||
#include <third_party/crypto/rijndael-alg-fst.c>
|
||||
#include <third_party/mspack/lzx.h>
|
||||
#include <third_party/mspack/lzxd.c>
|
||||
#include <third_party/mspack/mspack.h>
|
||||
#include <third_party/pe/pe_image.h>
|
||||
#include "poly/math.h"
|
||||
#include "third_party/crypto/rijndael-alg-fst.h"
|
||||
#include "third_party/crypto/rijndael-alg-fst.c"
|
||||
#include "third_party/mspack/lzx.h"
|
||||
#include "third_party/mspack/lzxd.c"
|
||||
#include "third_party/mspack/mspack.h"
|
||||
#include "third_party/pe/pe_image.h"
|
||||
|
||||
// using namespace alloy;
|
||||
|
||||
|
||||
@@ -10,9 +10,9 @@
|
||||
#ifndef XENIA_KERNEL_UTIL_XEX2_H_
|
||||
#define XENIA_KERNEL_UTIL_XEX2_H_
|
||||
|
||||
#include <xenia/common.h>
|
||||
#include <xenia/kernel/util/xex2_info.h>
|
||||
#include <xenia/memory.h>
|
||||
#include "xenia/common.h"
|
||||
#include "xenia/kernel/util/xex2_info.h"
|
||||
#include "xenia/memory.h"
|
||||
|
||||
typedef struct { int reserved; } xe_xex2_options_t;
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
#ifndef XENIA_KERNEL_XEX2_INFO_H_
|
||||
#define XENIA_KERNEL_XEX2_INFO_H_
|
||||
|
||||
#include <xenia/common.h>
|
||||
#include "xenia/common.h"
|
||||
|
||||
typedef enum {
|
||||
XEX_HEADER_RESOURCE_INFO = 0x000002FF,
|
||||
|
||||
Reference in New Issue
Block a user