forked from Public-Mirror/Textractor
13 lines
291 B
C
13 lines
291 B
C
#ifndef MISC_H
|
|
#define MISC_H
|
|
|
|
#include <QString>
|
|
#include <Windows.h>
|
|
#include "../texthook/host.h"
|
|
|
|
QString GetModuleName(DWORD processId, HMODULE module = NULL);
|
|
HookParam ParseHCode(QString HCode, DWORD processId);
|
|
QString GenerateHCode(HookParam hp, DWORD processId);
|
|
|
|
#endif // MISC_H
|