Move module defines into WUMS

This commit is contained in:
Maschell
2020-06-06 17:02:31 +02:00
parent 10d74d9f6d
commit 3f6f956b70
19 changed files with 8 additions and 178 deletions

View File

@@ -4,7 +4,6 @@
#include <vector>
#include <coreinit/dynload.h>
#include "utils/logger.h"
#include "common/module_defines.h"
dyn_linking_function_t *DynamicLinkingHelper::getOrAddFunctionEntryByName(dyn_linking_relocation_data_t *data, const char *functionName) {
if (data == NULL) {

View File

@@ -1,6 +1,6 @@
#pragma once
#include "common/dynamic_linking_defines.h"
#include <wums.h>
#include "utils/logger.h"
#include <string>
#include <vector>

View File

@@ -20,7 +20,7 @@
#include <string>
#include <vector>
#include <map>
#include "common/relocation_defines.h"
#include <wums.h>
#include "ModuleData.h"
#include "elfio/elfio.hpp"

View File

@@ -2,7 +2,6 @@
#include "ModuleDataPersistence.h"
#include "DynamicLinkingHelper.h"
#include "common/module_defines.h"
#include "ModuleData.h"
#include "RelocationData.h"

View File

@@ -1,6 +1,6 @@
#pragma once
#include "common/module_defines.h"
#include <wums.h>
#include "ModuleData.h"
class ModuleDataPersistence {