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);
|
||
|
}
|