Cleaning up some line ending issues.
This commit is contained in:
@@ -1,14 +1,14 @@
|
||||
/**
|
||||
******************************************************************************
|
||||
* 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. *
|
||||
******************************************************************************
|
||||
*/
|
||||
|
||||
// Post-include file for an export table.
|
||||
|
||||
|
||||
#undef FLAG
|
||||
#undef XE_EXPORT
|
||||
/**
|
||||
******************************************************************************
|
||||
* 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. *
|
||||
******************************************************************************
|
||||
*/
|
||||
|
||||
// Post-include file for an export table.
|
||||
|
||||
|
||||
#undef FLAG
|
||||
#undef XE_EXPORT
|
||||
|
||||
@@ -1,34 +1,34 @@
|
||||
/**
|
||||
******************************************************************************
|
||||
* 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. *
|
||||
******************************************************************************
|
||||
*/
|
||||
|
||||
/**
|
||||
* Pre-include file for an export table.
|
||||
* Use this to build tables of exports:
|
||||
*
|
||||
* // Build the export table used for resolution.
|
||||
* #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/util/export_table_post.inc"
|
||||
* export_resolver_->RegisterTable(
|
||||
* "my_module.xex",
|
||||
* my_module_export_table, poly::countof(my_module_export_table));
|
||||
*/
|
||||
|
||||
|
||||
#define XE_EXPORT(module, ordinal, name, type, flags) \
|
||||
{ \
|
||||
ordinal, \
|
||||
KernelExport::type, \
|
||||
flags, \
|
||||
#name, \
|
||||
}
|
||||
|
||||
#define FLAG(t) kXEKernelExportFlag##t
|
||||
/**
|
||||
******************************************************************************
|
||||
* 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. *
|
||||
******************************************************************************
|
||||
*/
|
||||
|
||||
/**
|
||||
* Pre-include file for an export table.
|
||||
* Use this to build tables of exports:
|
||||
*
|
||||
* // Build the export table used for resolution.
|
||||
* #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/util/export_table_post.inc"
|
||||
* export_resolver_->RegisterTable(
|
||||
* "my_module.xex",
|
||||
* my_module_export_table, poly::countof(my_module_export_table));
|
||||
*/
|
||||
|
||||
|
||||
#define XE_EXPORT(module, ordinal, name, type, flags) \
|
||||
{ \
|
||||
ordinal, \
|
||||
KernelExport::type, \
|
||||
flags, \
|
||||
#name, \
|
||||
}
|
||||
|
||||
#define FLAG(t) kXEKernelExportFlag##t
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
/**
|
||||
******************************************************************************
|
||||
* 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. *
|
||||
******************************************************************************
|
||||
*/
|
||||
|
||||
// Post-include file for an ordinal table.
|
||||
|
||||
|
||||
#undef XE_EXPORT
|
||||
/**
|
||||
******************************************************************************
|
||||
* 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. *
|
||||
******************************************************************************
|
||||
*/
|
||||
|
||||
// Post-include file for an ordinal table.
|
||||
|
||||
|
||||
#undef XE_EXPORT
|
||||
|
||||
@@ -1,27 +1,27 @@
|
||||
/**
|
||||
******************************************************************************
|
||||
* 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. *
|
||||
******************************************************************************
|
||||
*/
|
||||
|
||||
/**
|
||||
* Pre-include file for an ordinal table.
|
||||
* 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"
|
||||
* namespace ordinals {
|
||||
* enum {
|
||||
* #include "xenia/kernel/my_module/my_module_table.inc"
|
||||
* };
|
||||
* } // namespace ordinals
|
||||
* #include "xenia/kernel/util/ordinal_table_post.inc"
|
||||
*/
|
||||
|
||||
|
||||
#define XE_EXPORT(module, ordinal, name, type, flags) \
|
||||
name = ordinal
|
||||
|
||||
/**
|
||||
******************************************************************************
|
||||
* 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. *
|
||||
******************************************************************************
|
||||
*/
|
||||
|
||||
/**
|
||||
* Pre-include file for an ordinal table.
|
||||
* 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"
|
||||
* namespace ordinals {
|
||||
* enum {
|
||||
* #include "xenia/kernel/my_module/my_module_table.inc"
|
||||
* };
|
||||
* } // namespace ordinals
|
||||
* #include "xenia/kernel/util/ordinal_table_post.inc"
|
||||
*/
|
||||
|
||||
|
||||
#define XE_EXPORT(module, ordinal, name, type, flags) \
|
||||
name = ordinal
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
# Copyright 2013 Ben Vanik. All Rights Reserved.
|
||||
{
|
||||
'sources': [
|
||||
'export_table_post.inc',
|
||||
'export_table_pre.inc',
|
||||
'ordinal_table_post.inc',
|
||||
'ordinal_table_pre.inc',
|
||||
'shim_utils.h',
|
||||
'xex2.cc',
|
||||
'xex2.h',
|
||||
'xex2_info.h',
|
||||
],
|
||||
}
|
||||
# Copyright 2013 Ben Vanik. All Rights Reserved.
|
||||
{
|
||||
'sources': [
|
||||
'export_table_post.inc',
|
||||
'export_table_pre.inc',
|
||||
'ordinal_table_post.inc',
|
||||
'ordinal_table_pre.inc',
|
||||
'shim_utils.h',
|
||||
'xex2.cc',
|
||||
'xex2.h',
|
||||
'xex2_info.h',
|
||||
],
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user