14 lines
341 B
C
14 lines
341 B
C
#ifndef MISC_H
|
|
#define MISC_H
|
|
|
|
#include <QString>
|
|
#include <Windows.h>
|
|
#include "../texthook/host.h"
|
|
|
|
QString GetFullModuleName(DWORD processId, HMODULE module = NULL);
|
|
QString GetModuleName(DWORD processId, HMODULE module = NULL);
|
|
HookParam ParseHCode(QString HCode);
|
|
QString GenerateHCode(HookParam hp, DWORD processId);
|
|
|
|
#endif // MISC_H
|