mirror of https://github.com/decompals/wibo.git
16 lines
420 B
C++
16 lines
420 B
C++
#include "common.h"
|
|
|
|
namespace version {
|
|
unsigned int WIN_FUNC GetFileVersionInfoSizeA(const char* lptstrFilename, unsigned int* outZero) {
|
|
DEBUG_LOG("GetFileVersionInfoSizeA %s\n", lptstrFilename);
|
|
*outZero = 0;
|
|
wibo::lastError = 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
void *wibo::resolveVersion(const char *name) {
|
|
if (strcmp(name, "GetFileVersionInfoSizeA") == 0) return (void *) version::GetFileVersionInfoSizeA;
|
|
return 0;
|
|
}
|