This repository was archived by the owner on Sep 17, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 7 files changed +12
-13
lines changed
Expand file tree Collapse file tree 7 files changed +12
-13
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,12 @@ add_library(
3434 ${SOURCE_FILES}
3535)
3636
37+ target_precompile_headers(
38+ ${CURRENT_PROJECT}
39+ PRIVATE
40+ pch.h
41+ )
42+
3743target_include_directories (
3844 ${CURRENT_PROJECT}
3945 PRIVATE
File renamed without changes.
Original file line number Diff line number Diff line change 1- #include < cstdint>
2- #include < string.h>
3-
41constinit const char *TargetFunctionNames[] = {
52 " EOS_Overlay_ApplicationWillShutdown" ,
63 " EOS_Overlay_CloseBrowser" ,
Original file line number Diff line number Diff line change 1- #include < Windows.h>
2- #include < algorithm>
3- #include < string_view>
4- #include < mutex>
5- #include < unordered_set>
61#include " Hooking/Hooks.h"
72
83//
Original file line number Diff line number Diff line change 1- #include < cstdint>
2- #include < string.h>
31
42enum class NV_STATUS : uint32_t
53{
Original file line number Diff line number Diff line change 1+ #include < Windows.h>
2+ #include < algorithm>
3+ #include < string_view>
4+ #include < mutex>
5+ #include < unordered_set>
Original file line number Diff line number Diff line change 1- #include < Windows.h>
2-
31void *CustomLibraryResolverCallback ();
42
53#define DLL_PROXY_EXPORT_LISTING_FILE " ExportListing.inc" // List of exported functions
64#define DLL_PROXY_TLS_CALLBACK_AUTOINIT // Enable automatic initialization through a thread local storage callback
75#define DLL_PROXY_DECLARE_IMPLEMENTATION // Define the whole implementation
86#define DLL_PROXY_LIBRARY_RESOLVER_CALLBACK CustomLibraryResolverCallback // Custom DLL path resolver
9- #include " DllProxy.h"
7+ #include " DllProxy/DllProxy .h"
108
119extern bool EnableAggressiveHooking;
1210
You can’t perform that action at this time.
0 commit comments