Textractor_test/GUI/misc.h

15 lines
372 B
C
Raw Normal View History

2018-07-26 12:48:18 +08:00
#ifndef MISC_H
#define MISC_H
#include <QString>
#include <Windows.h>
#include "../texthook/host.h"
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-07-31 11:25:08 +08:00
QStringList GetAllProcesses();
2018-07-27 13:42:21 +08:00
HookParam ParseHCode(QString HCode);
2018-07-26 12:48:18 +08:00
QString GenerateHCode(HookParam hp, DWORD processId);
#endif // MISC_H