2018-12-02 08:12:45 +08:00
|
|
|
#pragma once
|
2018-07-26 12:48:18 +08:00
|
|
|
|
2018-08-23 00:24:55 +08:00
|
|
|
#include "qtcommon.h"
|
2018-08-25 00:50:20 +08:00
|
|
|
#include "types.h"
|
2018-07-26 12:48:18 +08:00
|
|
|
|
2019-01-11 10:47:16 +08:00
|
|
|
struct QTextFile : QFile
|
2018-11-28 04:54:04 +08:00
|
|
|
{
|
2019-01-11 10:47:16 +08:00
|
|
|
using QFile::QFile;
|
|
|
|
QTextFile(const QString& name, QIODevice::OpenMode mode) : QFile(name) { open(mode | QIODevice::Text); }
|
2018-11-28 04:54:04 +08:00
|
|
|
};
|
|
|
|
|
2018-12-23 05:17:08 +08:00
|
|
|
inline std::wstring S(const QString& S) { return { S.toStdWString() }; }
|
|
|
|
inline QString S(const std::wstring& S) { return QString::fromStdWString(S); }
|
2018-08-25 02:24:46 +08:00
|
|
|
std::optional<HookParam> ParseCode(QString HCode);
|
2018-08-05 06:01:59 +08:00
|
|
|
QString GenerateCode(HookParam hp, DWORD processId);
|
2019-01-12 06:14:49 +08:00
|
|
|
HMODULE LoadLibraryOnce(std::wstring fileName);
|