11 lines
188 B
C
11 lines
188 B
C
|
#pragma once
|
||
|
|
||
|
#include "common.h"
|
||
|
#include "types.h"
|
||
|
|
||
|
namespace HookCode
|
||
|
{
|
||
|
std::optional<HookParam> Parse(std::wstring code);
|
||
|
std::wstring Generate(HookParam hp, DWORD processId = 0);
|
||
|
}
|