mirror of
https://github.com/Artikash/Textractor.git
synced 2025-01-11 01:59:14 +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
|