move dlls into dll/ dir (#16)

This commit is contained in:
Mark Street
2022-07-18 14:54:17 +01:00
committed by GitHub
parent b86a542fe2
commit 11bdc5e8a2
7 changed files with 7 additions and 6 deletions

15
dll/version.cpp Normal file
View 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;
}