Files
UnrealEngineUWP/Engine/Source/Developer/Windows/LiveCodingServer/Private/External/LC_Patch.h
Chris Gagnon 00f8b72a0b Merging //UE4/Dev-Main to Dev-Editor (//UE4/Dev-Editor)
#rb none

[CL 5602170 by Chris Gagnon in Dev-Editor branch]
2019-03-27 15:03:08 -04:00

17 lines
495 B
C++

// Copyright 2011-2019 Molecular Matters GmbH, all rights reserved.
#pragma once
#include "CoreTypes.h"
#include "LC_Process.h"
namespace patch
{
void InstallNOPs(process::Handle processHandle, void* address, size_t size);
void InstallJumpToSelf(process::Handle processHandle, void* address);
void InstallRelativeShortJump(process::Handle processHandle, void* address, void* destination);
void InstallRelativeNearJump(process::Handle processHandle, void* address, void* destination);
}