summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2020-03-26 21:30:54 +0100
committerToni Uhlig <matzeton@googlemail.com>2020-03-26 21:30:54 +0100
commit65686da6fc1f91e3a831347703c758ea3ca97c3e (patch)
treecd346e80935414566767750b0be61a0ef34a5e7b
parenta3cd9bcc24a10ab4f4a553471ac130250ae8cc3d (diff)
purged all x86 stuff and morphed some CC/LD paths
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
-rw-r--r--.gitignore1
-rw-r--r--Hunt Showdown/CMD/Hunted.cpp2
-rw-r--r--Hunt Showdown/DLL/DLL.vcxproj2
-rw-r--r--Hunt Showdown/DLL/GdiRadarLib.libbin753922 -> 757824 bytes
-rw-r--r--cheats.sln22
5 files changed, 7 insertions, 20 deletions
diff --git a/.gitignore b/.gitignore
index 648652a..572d97c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -12,3 +12,4 @@
*.pch
/.vs
/x64/Release
+/x64/Debug
diff --git a/Hunt Showdown/CMD/Hunted.cpp b/Hunt Showdown/CMD/Hunted.cpp
index 9329090..0861589 100644
--- a/Hunt Showdown/CMD/Hunted.cpp
+++ b/Hunt Showdown/CMD/Hunted.cpp
@@ -156,7 +156,7 @@ int wmain(int argc, wchar_t **argv)
SymbolResolver sresolv;
DLLHelper dll(sresolv);
- if (!dll.Init(targetPID, "./HuntDLL.dll")) {
+ if (!dll.Init(targetPID, "..\DLL\x64\Release\HuntDLL.dll")) {
std::wcout << L"DLL Init failed" << std::endl;
}
if (!dll.VerifyHeader()) {
diff --git a/Hunt Showdown/DLL/DLL.vcxproj b/Hunt Showdown/DLL/DLL.vcxproj
index fc206f9..b1fb819 100644
--- a/Hunt Showdown/DLL/DLL.vcxproj
+++ b/Hunt Showdown/DLL/DLL.vcxproj
@@ -159,7 +159,7 @@
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<GenerateDebugInformation>true</GenerateDebugInformation>
- <AdditionalLibraryDirectories>$(SolutionDir)..\GdiRadar\x64\Release-Verbose;$(VCToolsInstallDir)lib\x64;$(OutputPath);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
+ <AdditionalLibraryDirectories>$(VCToolsInstallDir)lib\x64;$(OutputPath);%(AdditionalLibraryDirectories);$(ProjectDir)</AdditionalLibraryDirectories>
<AdditionalDependencies>kernel32.lib;user32.lib;GdiRadarLib.lib</AdditionalDependencies>
<IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
<EntryPointSymbol>LibEntry</EntryPointSymbol>
diff --git a/Hunt Showdown/DLL/GdiRadarLib.lib b/Hunt Showdown/DLL/GdiRadarLib.lib
index 5fcfb97..10cae01 100644
--- a/Hunt Showdown/DLL/GdiRadarLib.lib
+++ b/Hunt Showdown/DLL/GdiRadarLib.lib
Binary files differ
diff --git a/cheats.sln b/cheats.sln
index ca26acc..9a5fb36 100644
--- a/cheats.sln
+++ b/cheats.sln
@@ -5,42 +5,28 @@ VisualStudioVersion = 15.0.28307.1062
MinimumVisualStudioVersion = 10.0.40219.1
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CSGO", "csgo_radar_kmem\CSGO.vcxproj", "{65C081C2-3A90-470C-BF06-AFF2EEB00C25}"
EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DLL", "Hunt Showdown\DLL\DLL.vcxproj", "{5BC7339B-8115-493D-925B-9891DBC10EA9}"
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "HuntDLL", "Hunt Showdown\DLL\DLL.vcxproj", "{5BC7339B-8115-493D-925B-9891DBC10EA9}"
EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CMD", "Hunt Showdown\CMD\CMD.vcxproj", "{DB513F0F-ECDB-4856-8AB1-B2CBCC745E5A}"
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "HuntCtrl", "Hunt Showdown\CMD\CMD.vcxproj", "{DB513F0F-ECDB-4856-8AB1-B2CBCC745E5A}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x64 = Debug|x64
- Debug|x86 = Debug|x86
Release|x64 = Release|x64
- Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{65C081C2-3A90-470C-BF06-AFF2EEB00C25}.Debug|x64.ActiveCfg = Debug|x64
{65C081C2-3A90-470C-BF06-AFF2EEB00C25}.Debug|x64.Build.0 = Debug|x64
- {65C081C2-3A90-470C-BF06-AFF2EEB00C25}.Debug|x86.ActiveCfg = Debug|Win32
- {65C081C2-3A90-470C-BF06-AFF2EEB00C25}.Debug|x86.Build.0 = Debug|Win32
{65C081C2-3A90-470C-BF06-AFF2EEB00C25}.Release|x64.ActiveCfg = Release|x64
{65C081C2-3A90-470C-BF06-AFF2EEB00C25}.Release|x64.Build.0 = Release|x64
- {65C081C2-3A90-470C-BF06-AFF2EEB00C25}.Release|x86.ActiveCfg = Release|Win32
- {65C081C2-3A90-470C-BF06-AFF2EEB00C25}.Release|x86.Build.0 = Release|Win32
- {5BC7339B-8115-493D-925B-9891DBC10EA9}.Debug|x64.ActiveCfg = Debug|x64
- {5BC7339B-8115-493D-925B-9891DBC10EA9}.Debug|x64.Build.0 = Debug|x64
- {5BC7339B-8115-493D-925B-9891DBC10EA9}.Debug|x86.ActiveCfg = Debug|Win32
- {5BC7339B-8115-493D-925B-9891DBC10EA9}.Debug|x86.Build.0 = Debug|Win32
+ {5BC7339B-8115-493D-925B-9891DBC10EA9}.Debug|x64.ActiveCfg = Release|x64
+ {5BC7339B-8115-493D-925B-9891DBC10EA9}.Debug|x64.Build.0 = Release|x64
{5BC7339B-8115-493D-925B-9891DBC10EA9}.Release|x64.ActiveCfg = Release|x64
{5BC7339B-8115-493D-925B-9891DBC10EA9}.Release|x64.Build.0 = Release|x64
- {5BC7339B-8115-493D-925B-9891DBC10EA9}.Release|x86.ActiveCfg = Release|Win32
- {5BC7339B-8115-493D-925B-9891DBC10EA9}.Release|x86.Build.0 = Release|Win32
{DB513F0F-ECDB-4856-8AB1-B2CBCC745E5A}.Debug|x64.ActiveCfg = Debug|x64
{DB513F0F-ECDB-4856-8AB1-B2CBCC745E5A}.Debug|x64.Build.0 = Debug|x64
- {DB513F0F-ECDB-4856-8AB1-B2CBCC745E5A}.Debug|x86.ActiveCfg = Debug|Win32
- {DB513F0F-ECDB-4856-8AB1-B2CBCC745E5A}.Debug|x86.Build.0 = Debug|Win32
{DB513F0F-ECDB-4856-8AB1-B2CBCC745E5A}.Release|x64.ActiveCfg = Release|x64
{DB513F0F-ECDB-4856-8AB1-B2CBCC745E5A}.Release|x64.Build.0 = Release|x64
- {DB513F0F-ECDB-4856-8AB1-B2CBCC745E5A}.Release|x86.ActiveCfg = Release|Win32
- {DB513F0F-ECDB-4856-8AB1-B2CBCC745E5A}.Release|x86.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE