Support ProDC NgcAs.exe (#57)

This commit is contained in:
Mark Street
2023-10-22 09:11:00 +01:00
committed by GitHub
parent 30ef434872
commit 0f8fb7f62d
2 changed files with 33 additions and 1 deletions

View File

@@ -3,7 +3,9 @@
namespace version {
unsigned int WIN_FUNC GetFileVersionInfoSizeA(const char* lptstrFilename, unsigned int* outZero) {
DEBUG_LOG("GetFileVersionInfoSizeA %s\n", lptstrFilename);
*outZero = 0;
if (outZero != NULL) {
*outZero = 0;
}
wibo::lastError = 0;
return 0;
}