1
0
mirror of synced 2024-11-28 01:10:55 +01:00

Update qr.cpp

This commit is contained in:
ptmaster 2024-03-28 14:13:52 +08:00 committed by GitHub
parent efd0aeb98a
commit c18b3a5563
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -163,7 +163,7 @@ HOOK_DYNAMIC (i64, __fastcall, copy_data, i64, void *dest, int length) {
} else if (gMode == Mode::Plugin) {
FARPROC getQrEvent = GetProcAddress (gPlugin, "getQr");
if (getQrEvent) {
std::vector<uint8_t> byteBuffer1 = ((GetQrEvent*) getQrEvent) ();
std::vector<uint8_t> byteBuffer = ((GetQrEvent*) getQrEvent) ();
// std::vector<uint8_t> byteBuffer = {0x53, 0x31, 0x32, 0x00, 0x01, 0x26, 0x7D, 0xA4, 0x3C, 0x34, 0xEC, 0x3E, 0x7F, 0xA9, 0x52, 0x34, 0xFF, 0xAF, 0x94, 0xA4, 0x99, 0xFE, 0xDD, 0x47, 0x22, 0xB3, 0xDF, 0xA4, 0x4C, 0x9D, 0xAB, 0x10, 0x22, 0x91, 0xDA, 0x16, 0xF1};
std::stringstream ss;