2018-07-25 21:48:18 -07:00
|
|
|
#ifndef MISC_H
|
|
|
|
#define MISC_H
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
#include <Windows.h>
|
|
|
|
#include "../texthook/host.h"
|
|
|
|
|
2018-07-26 22:42:21 -07:00
|
|
|
QString GetFullModuleName(DWORD processId, HMODULE module = NULL);
|
2018-07-25 21:48:18 -07:00
|
|
|
QString GetModuleName(DWORD processId, HMODULE module = NULL);
|
2018-07-30 20:25:08 -07:00
|
|
|
QStringList GetAllProcesses();
|
2018-07-26 22:42:21 -07:00
|
|
|
HookParam ParseHCode(QString HCode);
|
2018-07-25 21:48:18 -07:00
|
|
|
QString GenerateHCode(HookParam hp, DWORD processId);
|
|
|
|
|
|
|
|
#endif // MISC_H
|