From 05e92849c448d784f9cc5668f32c573eb155464c Mon Sep 17 00:00:00 2001 From: KIT! Date: Thu, 25 Apr 2024 12:13:26 +0200 Subject: [PATCH] Reverted changes: initial CHN support. --- src/cardreader_plugin/dllmain.c | 28 ++++------------------------ 1 file changed, 4 insertions(+), 24 deletions(-) diff --git a/src/cardreader_plugin/dllmain.c b/src/cardreader_plugin/dllmain.c index bbc6ce4..61b64d2 100644 --- a/src/cardreader_plugin/dllmain.c +++ b/src/cardreader_plugin/dllmain.c @@ -17,10 +17,6 @@ static bool HasCard = false; bool usingSmartCard = false; int readCooldown = 200; -typedef(QRCALL_proc)(char id[21]); -QRCALL_proc *QRCALL; -HANDLE bnusio_dll; - typedef void (*callbackTouch)(i32, i32, u8[168], u64); callbackTouch touchCallback; u64 touchData; @@ -81,7 +77,7 @@ static unsigned int __stdcall reader_poll_thread_proc(void *ctx) { printWarning("%s (%s): Read card %02X%02X%02X%02X%02X%02X%02X%02X\n", __func__, module, UID[0], UID[1], UID[2], UID[3], UID[4], UID[5], UID[6], UID[7]); - if (waitingForTouch || QRCALL) // Check if game is waiting for a card or a qr code. + if (waitingForTouch) // Check if game is waiting for a card. { // Properly format the AccessID u64 ReversedAccessID; @@ -157,17 +153,6 @@ void reader_runner_stop() void Init() { - bnusio_dll = LoadLibrary(".\\bnusio.dll"); /*Explicit Load*/ - if (bnusio_dll) - { - printWarning("%s (%s): Got bnusio !\n", __func__, module); - QRCALL = GetProcAddress(bnusio_dll, "qr_call"); - if (QRCALL) - printWarning("%s (%s): Got QRCALL, using QR emulator !\n", __func__, module); - else - printWarning("%s (%s): Couldn't find QRCALL, using card emulator !\n", __func__, module); - } - printWarning("%s (%s): Starting HID Service...\n", __func__, module); // Read config @@ -215,14 +200,9 @@ void Update() // Insert card in game printInfo("%s (%s): Inserting Card %s, with ChipID %s\n", __func__, module, AccessID, ChipID); - if (QRCALL) - QRCALL(AccessID); // For CHN - else - { - memcpy(cardData + 0x2C, ChipID, 33); - memcpy(cardData + 0x50, AccessID, 21); - touchCallback(0, 0, cardData, touchData); - } + memcpy(cardData + 0x2C, ChipID, 33); + memcpy(cardData + 0x50, AccessID, 21); + touchCallback(0, 0, cardData, touchData); HasCard = false; }