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-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
|