2018-12-01 19:12:45 -05:00
|
|
|
#pragma once
|
2018-07-25 21:48:18 -07:00
|
|
|
|
2018-08-22 12:24:55 -04:00
|
|
|
#include "qtcommon.h"
|
2018-08-24 12:50:20 -04:00
|
|
|
#include "types.h"
|
2018-07-25 21:48:18 -07:00
|
|
|
|
2018-11-27 15:54:04 -05:00
|
|
|
class QAutoFile
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
QAutoFile(QString name, QIODevice::OpenMode mode) : f(name) { f.open(mode); }
|
|
|
|
QFile* operator->() { return &f; }
|
|
|
|
private:
|
|
|
|
QFile f;
|
|
|
|
};
|
|
|
|
|
2018-12-13 08:37:37 -05:00
|
|
|
std::wstring S(const QString& S);
|
|
|
|
QString S(const std::wstring& S);
|
2018-08-24 14:24:46 -04:00
|
|
|
std::optional<HookParam> ParseCode(QString HCode);
|
2018-08-04 18:01:59 -04:00
|
|
|
QString GenerateCode(HookParam hp, DWORD processId);
|