From f6f6d899f2935219c384ae23ceb329e1a7eeeacc Mon Sep 17 00:00:00 2001 From: Amrsatrio Date: Tue, 7 Nov 2023 18:46:17 +0700 Subject: [PATCH] GUI: Begin decoupling into ep_gui --- ExplorerPatcher/ExplorerPatcher.rc | Bin 36132 -> 35872 bytes ExplorerPatcher/ExplorerPatcher.vcxproj | 7 ------- .../ExplorerPatcher.vcxproj.filters | 12 ------------ ExplorerPatcher/dllmain.c | 1 - ExplorerPatcher/resource.h | 2 -- {ExplorerPatcher => ep_gui}/GUI.c | 0 {ExplorerPatcher => ep_gui}/GUI.h | 0 .../resources}/settings.reg | 0 .../resources}/settings10.reg | 0 9 files changed, 22 deletions(-) rename {ExplorerPatcher => ep_gui}/GUI.c (100%) rename {ExplorerPatcher => ep_gui}/GUI.h (100%) rename {ExplorerPatcher => ep_gui/resources}/settings.reg (100%) rename {ExplorerPatcher => ep_gui/resources}/settings10.reg (100%) diff --git a/ExplorerPatcher/ExplorerPatcher.rc b/ExplorerPatcher/ExplorerPatcher.rc index 3e006d955d5f02d833343a84d4169c9c6cc2a245..feff20caa72201bc1782c2ef469d82b3330d9add 100644 GIT binary patch delta 14 WcmZ27i)q0OrVSnfn|%atR09Akw*}?^ delta 130 zcmZ25gK5burVSnfyzUI148aT`3_%Q$42F{#xy2{v2pE|cGo&(<0AVIW9z!}qF@qjM q5l|$ZL5YEvfeWa^1*kqAh+P?w^&7$T%cAQyWH3OOvDsYUWi - - true - true - true @@ -322,7 +318,6 @@ - @@ -344,8 +339,6 @@ - - diff --git a/ExplorerPatcher/ExplorerPatcher.vcxproj.filters b/ExplorerPatcher/ExplorerPatcher.vcxproj.filters index 1cb4c14..c4be604 100644 --- a/ExplorerPatcher/ExplorerPatcher.vcxproj.filters +++ b/ExplorerPatcher/ExplorerPatcher.vcxproj.filters @@ -60,9 +60,6 @@ Header Files - - Header Files - Header Files @@ -166,9 +163,6 @@ Source Files - - Source Files - Source Files @@ -219,12 +213,6 @@ - - Settings - - - Settings - \ No newline at end of file diff --git a/ExplorerPatcher/dllmain.c b/ExplorerPatcher/dllmain.c index 48b2a5d..4a37f1e 100644 --- a/ExplorerPatcher/dllmain.c +++ b/ExplorerPatcher/dllmain.c @@ -208,7 +208,6 @@ BOOL g_bIsDesktopRaised = FALSE; #include "ArchiveMenu.h" #include "StartupSound.h" #include "StartMenu.h" -#include "GUI.h" #include "TaskbarCenter.h" #include "../libs/sws/SimpleWindowSwitcher/sws_WindowSwitcher.h" #endif diff --git a/ExplorerPatcher/resource.h b/ExplorerPatcher/resource.h index 2e86782..12163a7 100644 --- a/ExplorerPatcher/resource.h +++ b/ExplorerPatcher/resource.h @@ -2,7 +2,6 @@ // Microsoft Visual C++ generated include file. // Used by ExplorerPatcher.rc // -#define IDR_REGISTRY1 101 #define IDS_PRODUCTNAME 102 #define IDS_COPYRIGHT 103 #define IDS_VERSION 104 @@ -15,7 +14,6 @@ #define IDS_UNINSTALL_SUCCESS_TEXT 111 #define IDS_UNINSTALL_ERROR_TEXT 112 #define IDS_OPERATION_NONE 113 -#define IDR_REGISTRY2 114 #define IDR_REFRESHEDSTYLES_XBF 115 #define IDS_DRIVECATEGORY_HARDDISKDRIVES 40000 #define IDS_DRIVECATEGORY_REMOVABLESTORAGE 40001 diff --git a/ExplorerPatcher/GUI.c b/ep_gui/GUI.c similarity index 100% rename from ExplorerPatcher/GUI.c rename to ep_gui/GUI.c diff --git a/ExplorerPatcher/GUI.h b/ep_gui/GUI.h similarity index 100% rename from ExplorerPatcher/GUI.h rename to ep_gui/GUI.h diff --git a/ExplorerPatcher/settings.reg b/ep_gui/resources/settings.reg similarity index 100% rename from ExplorerPatcher/settings.reg rename to ep_gui/resources/settings.reg diff --git a/ExplorerPatcher/settings10.reg b/ep_gui/resources/settings10.reg similarity index 100% rename from ExplorerPatcher/settings10.reg rename to ep_gui/resources/settings10.reg