Browse Source

ep_setup_patch: Supply custom hash as argument 1 (useful in `ep_make`)

pull/3424/head
Valentin Radu 2 years ago
parent
commit
c41b93b6b4
  1. 10
      ep_setup_patch/ep_setup_patch.c

10
ep_setup_patch/ep_setup_patch.c

@ -18,8 +18,18 @@ int WINAPI wWinMain( @@ -18,8 +18,18 @@ int WINAPI wWinMain(
CHAR hash[100];
ZeroMemory(hash, 100);
if (__argc > 1)
{
for (size_t i = 0; i < MIN(wcslen(__wargv[1]), 32); ++i)
{
hash[i] = __wargv[1][i];
}
}
else
{
ComputeFileHash2(hModule, wszPath, hash, 100);
FreeLibrary(hModule);
}
PathRemoveFileSpecW(wszPath);
wcscat_s(wszPath, MAX_PATH, L"\\" _T(SETUP_UTILITY_NAME));

Loading…
Cancel
Save