Fix #include format.

This commit is contained in:
Ben Vanik
2015-01-31 22:49:47 -08:00
parent f4f401e927
commit 00e4a4fe1b
373 changed files with 1171 additions and 1171 deletions

View File

@@ -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));

View File

@@ -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"
*/

View File

@@ -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 {

View File

@@ -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;

View File

@@ -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;

View File

@@ -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,