2018-11-22 15:53:32 -05:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "common.h"
|
2019-01-31 11:41:43 -05:00
|
|
|
#include "types.h"
|
2018-11-22 15:53:32 -05:00
|
|
|
|
|
|
|
namespace Util
|
|
|
|
{
|
2018-12-22 13:05:01 -05:00
|
|
|
std::optional<std::wstring> GetModuleFilename(DWORD processId, HMODULE module = NULL);
|
|
|
|
std::optional<std::wstring> GetModuleFilename(HMODULE module = NULL);
|
2019-06-27 12:39:44 +05:30
|
|
|
std::vector<std::pair<DWORD, std::optional<std::wstring>>> GetAllProcesses();
|
2018-11-22 15:53:32 -05:00
|
|
|
std::optional<std::wstring> GetClipboardText();
|
2019-02-16 00:33:38 -05:00
|
|
|
std::optional<std::wstring> StringToWideString(const std::string& text, UINT encoding = CP_UTF8);
|
2019-01-31 11:41:43 -05:00
|
|
|
std::optional<HookParam> ParseCode(std::wstring code);
|
|
|
|
std::wstring GenerateCode(HookParam hp, DWORD processId);
|
2018-11-22 15:53:32 -05:00
|
|
|
}
|