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

24
dll/lmgr.cpp Normal file
View File

@@ -0,0 +1,24 @@
#include "common.h"
namespace lmgr {
int lp_checkout(int a, int b, const char* c, const char* d, int e, const char* f, int* out) {
DEBUG_LOG("lp_checkout %d %d %s %s %d %s\n", a, b, c, d, e, f);
*out = 1234;
return 0;
}
int lp_checkin() {
DEBUG_LOG("lp_checkin\n");
return 0;
}
}
void *wibo::resolveLmgr(uint16_t ordinal) {
switch (ordinal) {
case 189:
return (void*)lmgr::lp_checkin;
case 190:
return (void*)lmgr::lp_checkout;
}
return 0;
}