1
0
mirror of https://github.com/valinet/ExplorerPatcher.git synced 2025-01-20 01:12:49 +01:00

Patched function call in main

This commit is contained in:
Valentin Radu 2021-10-10 23:12:34 +03:00
parent 061f85f402
commit f35a6b9d64
2 changed files with 2 additions and 2 deletions

View File

@ -1411,7 +1411,7 @@ __declspec(dllexport) DWORD WINAPI main(
sizeof(symbols_addr)
);
if (LoadSymbols(&symbols_PTRS))
if (LoadSymbols(&symbols_PTRS, hModule))
{
printf("Symbols have to be (re)downloaded...\n");
DownloadSymbolsParams* params = malloc(sizeof(DownloadSymbolsParams));

View File

@ -40,5 +40,5 @@ typedef struct _DownloadSymbolsParams
} DownloadSymbolsParams;
DWORD DownloadSymbols(DownloadSymbolsParams* params);
BOOL LoadSymbols(symbols_addr* symbols_PTRS);
BOOL LoadSymbols(symbols_addr* symbols_PTRS, HMODULE hModule);
#endif