From 0f71d5331f940b98d5d2668cb345cd7b30bfd299 Mon Sep 17 00:00:00 2001 From: Jasper1467 Date: Tue, 17 Dec 2024 16:36:22 +0100 Subject: [PATCH] changed file names --- CMakeLists.txt | 8 ++++---- include/{table32.hpp => mhde_table32.hpp} | 0 include/{table64.hpp => mhde_table64.hpp} | 0 include/{wrapper.hpp => mhde_wrapper.hpp} | 0 src/mhde32.cpp | 2 +- src/mhde64.cpp | 2 +- tests/tests.cpp | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) rename include/{table32.hpp => mhde_table32.hpp} (100%) rename include/{table64.hpp => mhde_table64.hpp} (100%) rename include/{wrapper.hpp => mhde_wrapper.hpp} (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 61511d2..cff7555 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,8 +19,8 @@ if (${ARCH} EQUAL 32) ) set(HEADERS include/mhde32.hpp - include/table32.hpp - include/wrapper.hpp + include/mhde_table32.hpp + include/mhde_wrapper.hpp ) elseif (${ARCH} EQUAL 64) set(SOURCES @@ -28,8 +28,8 @@ elseif (${ARCH} EQUAL 64) ) set(HEADERS include/mhde64.hpp - include/table64.hpp - include/wrapper.hpp + include/mhde_table64.hpp + include/mhde_wrapper.hpp ) else() message(FATAL_ERROR "Unsupported architecture") diff --git a/include/table32.hpp b/include/mhde_table32.hpp similarity index 100% rename from include/table32.hpp rename to include/mhde_table32.hpp diff --git a/include/table64.hpp b/include/mhde_table64.hpp similarity index 100% rename from include/table64.hpp rename to include/mhde_table64.hpp diff --git a/include/wrapper.hpp b/include/mhde_wrapper.hpp similarity index 100% rename from include/wrapper.hpp rename to include/mhde_wrapper.hpp diff --git a/src/mhde32.cpp b/src/mhde32.cpp index 5f4afcb..38091f5 100644 --- a/src/mhde32.cpp +++ b/src/mhde32.cpp @@ -1,7 +1,7 @@ #if defined(_M_IX86) || defined(__i386__) #include "../include/mhde32.hpp" -#include "../include/table32.hpp" +#include "../include/mhde_table32.hpp" #include diff --git a/src/mhde64.cpp b/src/mhde64.cpp index 25f99c6..92b9f15 100644 --- a/src/mhde64.cpp +++ b/src/mhde64.cpp @@ -1,7 +1,7 @@ #if defined(_M_X64) || defined(__x86_64__) #include "../include/mhde64.hpp" -#include "../include/table64.hpp" +#include "../include/mhde_table64.hpp" #include #include diff --git a/tests/tests.cpp b/tests/tests.cpp index 5949e2c..73e1d7d 100644 --- a/tests/tests.cpp +++ b/tests/tests.cpp @@ -1,4 +1,4 @@ -#include "../include/wrapper.hpp" +#include "../include/mhde_wrapper.hpp" #include #include