clang-format

This commit is contained in:
Ben Vanik
2015-05-04 19:03:30 -07:00
parent 0f14575592
commit 442e5f2840
7 changed files with 36 additions and 29 deletions

View File

@@ -44,10 +44,10 @@ class PESection {
};
struct PEExport {
const char *name;
const char* name;
uint32_t ordinal;
uint64_t addr; // Function address
uint64_t addr; // Function address
};
xe_xex2_ref xe_xex2_load(xe::Memory* memory, const void* addr,
@@ -62,7 +62,7 @@ int xe_xex2_get_import_infos(xe_xex2_ref xex,
xe_xex2_import_info_t** out_import_infos,
size_t* out_import_info_count);
int xe_xex2_lookup_export(xe_xex2_ref xex, const char *name,
PEExport &peexport);
int xe_xex2_lookup_export(xe_xex2_ref xex, const char* name,
PEExport& peexport);
#endif // XENIA_KERNEL_UTIL_XEX2_H_