mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-24 09:02:47 +00:00
17 lines
297 B
C++
17 lines
297 B
C++
// Copyright 2014 Dolphin Emulator Project
|
|
// Licensed under GPLv2
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
#include "Common/CommonTypes.h"
|
|
|
|
namespace JitRegister
|
|
{
|
|
|
|
void Init();
|
|
void Shutdown();
|
|
void Register(const void* base_address, u32 code_size,
|
|
const char* format, ...);
|
|
|
|
}
|