mirror of
https://github.com/HIllya51/LunaHook.git
synced 2024-11-23 13:55:36 +08:00
10 lines
168 B
C++
10 lines
168 B
C++
#pragma once
|
|
|
|
#include "types.h"
|
|
|
|
namespace HookCode
|
|
{
|
|
std::optional<HookParam> Parse(std::wstring code);
|
|
std::wstring Generate(HookParam hp, DWORD processId = 0);
|
|
}
|