You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
17 lines
519 B
C++
17 lines
519 B
C++
// Copyright 2011-2019 Molecular Matters GmbH, all rights reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreTypes.h"
|
|
#include "LC_Process.h"
|
|
|
|
|
|
namespace disassembler
|
|
{
|
|
// returns the size of the first instruction found at the given address
|
|
size_t FindInstructionSize(process::Handle processHandle, const void* address);
|
|
|
|
// returns the address of the previous instruction inside a function
|
|
const void* FindPreviousInstructionAddress(process::Handle processHandle, const void* functionStart, const void* instructionAddress);
|
|
}
|