mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-26 04:21:27 +00:00
24 lines
456 B
C
24 lines
456 B
C
|
// stdafx.h : include file for standard system include files,
|
||
|
// or project specific include files that are used frequently, but
|
||
|
// are changed infrequently
|
||
|
//
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
namespace OutBuffer
|
||
|
{
|
||
|
void Init();
|
||
|
|
||
|
void Add(const char* _fmt, ...);
|
||
|
void AddCode(const char* _fmt, ...);
|
||
|
|
||
|
const char* GetRegName(uint16 reg);
|
||
|
const char* GetMemName(uint16 addr);
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
// TODO: reference additional headers your program requires here
|