mirror of
https://github.com/Artikash/Textractor.git
synced 2024-12-24 01:14:12 +08:00
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
|