From 0dc08b804bb305aadf482d6bdecfb8893b28f924 Mon Sep 17 00:00:00 2001 From: Maschell Date: Thu, 28 Jun 2018 22:04:47 +0200 Subject: [PATCH] Move wups include into a seperate folder to avoid collisions --- wups_include/wups.h | 8 ++++---- wups_include/{ => wups}/common.h | 0 wups_include/{ => wups}/function_patching.h | 0 wups_include/{ => wups}/hooks.h | 0 wups_include/{ => wups}/utils.h | 0 5 files changed, 4 insertions(+), 4 deletions(-) rename wups_include/{ => wups}/common.h (100%) rename wups_include/{ => wups}/function_patching.h (100%) rename wups_include/{ => wups}/hooks.h (100%) rename wups_include/{ => wups}/utils.h (100%) diff --git a/wups_include/wups.h b/wups_include/wups.h index 5b209a9..87572ae 100644 --- a/wups_include/wups.h +++ b/wups_include/wups.h @@ -26,9 +26,9 @@ #ifndef WUPS_H_ #define WUPS_H_ -#include "common.h" -#include "function_patching.h" -#include "hooks.h" -#include "utils.h" +#include "wups/common.h" +#include "wups/function_patching.h" +#include "wups/hooks.h" +#include "wups/utils.h" #endif /* WUPS_WUPS_H_ */ \ No newline at end of file diff --git a/wups_include/common.h b/wups_include/wups/common.h similarity index 100% rename from wups_include/common.h rename to wups_include/wups/common.h diff --git a/wups_include/function_patching.h b/wups_include/wups/function_patching.h similarity index 100% rename from wups_include/function_patching.h rename to wups_include/wups/function_patching.h diff --git a/wups_include/hooks.h b/wups_include/wups/hooks.h similarity index 100% rename from wups_include/hooks.h rename to wups_include/wups/hooks.h diff --git a/wups_include/utils.h b/wups_include/wups/utils.h similarity index 100% rename from wups_include/utils.h rename to wups_include/wups/utils.h