wibo/dll/lmgr.cpp

25 lines
468 B
C++
Raw Normal View History

2022-06-28 23:07:04 +00:00
#include "common.h"
2022-06-29 15:33:41 +00:00
namespace lmgr {
2022-06-28 23:07:04 +00:00
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;
}
}
2022-06-29 15:33:41 +00:00
void *wibo::resolveLmgr(uint16_t ordinal) {
2022-06-28 23:07:04 +00:00
switch (ordinal) {
case 189:
2022-06-29 15:33:41 +00:00
return (void*)lmgr::lp_checkin;
2022-06-28 23:07:04 +00:00
case 190:
2022-06-29 15:33:41 +00:00
return (void*)lmgr::lp_checkout;
2022-06-28 23:07:04 +00:00
}
return 0;
}