Skip to content

Commit

Permalink
add cgahook
Browse files Browse the repository at this point in the history
  • Loading branch information
hzqst committed Dec 27, 2019
1 parent 073d02d commit 2e53c3e
Show file tree
Hide file tree
Showing 9 changed files with 3,106 additions and 482 deletions.
4 changes: 3 additions & 1 deletion cgahook/cgahook.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;DETOURS_32BIT;DETOURS_X86;WIN32;NDEBUG;_WINDOWS;_USRDLL;CGAHOOK_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalIncludeDirectories>../boost/;../rest_rpc/include/;../rest_rpc/third/msgpack/include/;../Detours/</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>../boost_1_63_0;../rest_rpc/;../rest_rpc/spdlog/include;../rest_rpc/iguana;../rest_rpc/iguana/third_party/msgpack/include;../Detours/;../rapidjson/</AdditionalIncludeDirectories>
<AdditionalOptions>-D_SCL_SECURE_NO_WARNINGS %(AdditionalOptions)</AdditionalOptions>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
<DisableSpecificWarnings>4091</DisableSpecificWarnings>
Expand All @@ -94,12 +94,14 @@
<ItemGroup>
<ClCompile Include="..\Detours\detours.cpp" />
<ClCompile Include="..\Detours\disasm.cpp" />
<ClCompile Include="commandline.cpp" />
<ClCompile Include="dump.cpp" />
<ClCompile Include="gameservice.cpp" />
<ClCompile Include="main.cpp" />
<ClCompile Include="server.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="commandline.h" />
<ClInclude Include="gameservice.h" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
Expand Down
20 changes: 13 additions & 7 deletions cgahook/cgahook.vcxproj.filters
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Filter Include="源文件">
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
</Filter>
<Filter Include="头文件">
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
<Extensions>h;hh;hpp;hxx;hm;inl;inc;xsd</Extensions>
Expand All @@ -13,14 +9,15 @@
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
</Filter>
<Filter Include="源文件">
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
</Filter>
<Filter Include="源文件\Detours">
<UniqueIdentifier>{1be7fa71-b964-490c-be9b-8af5f4594fd6}</UniqueIdentifier>
</Filter>
</ItemGroup>
<ItemGroup>
<ClCompile Include="server.cpp">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="gameservice.cpp">
<Filter>源文件</Filter>
</ClCompile>
Expand All @@ -36,10 +33,19 @@
<ClCompile Include="dump.cpp">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="commandline.cpp">
<Filter>源文件</Filter>
</ClCompile>
<ClCompile Include="server.cpp">
<Filter>源文件</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="gameservice.h">
<Filter>头文件</Filter>
</ClInclude>
<ClInclude Include="commandline.h">
<Filter>头文件</Filter>
</ClInclude>
</ItemGroup>
</Project>
4 changes: 4 additions & 0 deletions cgahook/cgahook.vcxproj.user
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup />
</Project>
Loading

0 comments on commit 2e53c3e

Please sign in to comment.