Textractor_test/GUI/misc.h

30 lines
1.0 KiB
C
Raw Normal View History

2018-07-26 12:48:18 +08:00
#ifndef MISC_H
#define MISC_H
#include <QString>
2018-08-21 02:30:50 +08:00
#include <unordered_map>
2018-07-26 12:48:18 +08:00
#include <Windows.h>
2018-08-03 22:41:30 +08:00
#include "../host/host.h"
2018-07-26 12:48:18 +08:00
2018-07-27 13:42:21 +08:00
QString GetFullModuleName(DWORD processId, HMODULE module = NULL);
2018-07-26 12:48:18 +08:00
QString GetModuleName(DWORD processId, HMODULE module = NULL);
2018-08-21 02:30:50 +08:00
std::unordered_map<std::wstring, DWORD> GetAllProcesses();
2018-08-05 06:01:59 +08:00
HookParam ParseCode(QString HCode);
QString GenerateCode(HookParam hp, DWORD processId);
2018-07-26 12:48:18 +08:00
2018-08-05 06:01:59 +08:00
static QString CodeInfoDump =
"Enter hook code\r\n\
/H{A|B|W|S|Q|V}[N]data_offset[*deref_offset1][:split_offset[*deref_offset2]]@addr[:module]\r\n\
OR\r\n\
Enter read code\r\n\
/R{S|Q|V}string_gap@addr\r\n\
2018-08-03 14:32:05 +08:00
All numbers in hexadecimal\r\n\
2018-08-05 06:29:43 +08:00
Use 0 for string_gap if string is in same location every time\r\n\
2018-08-03 14:32:05 +08:00
A/B: Shift-JIS char little/big endian\r\n\
W: UTF-16 char\r\n\
S/Q/V: Shift-JIS/UTF-16/UTF-8 string\r\n\
Negatives for data_offset/sub_offset refer to registers\r\n\
-4 for EAX, -8 for ECX, -C for EDX, -10 for EBX, -14 for ESP, -18 for EBP, -1C for ESI, -20 for EDI\r\n\
2018-08-05 06:29:43 +08:00
* means dereference pointer+deref_offset";
2018-07-26 12:48:18 +08:00
#endif // MISC_H