mirror of
https://github.com/decompals/wibo.git
synced 2025-12-18 17:35:26 +00:00
move dlls into dll/ dir (#16)
This commit is contained in:
15
dll/version.cpp
Normal file
15
dll/version.cpp
Normal file
@@ -0,0 +1,15 @@
|
||||
#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;
|
||||
}
|
||||
Reference in New Issue
Block a user