mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
Added mail viewer to the HLE DSP plugin. Use it by selecting Mail > Scan mails in the sound debugger.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1109 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -6,13 +6,13 @@
|
||||
#define _DSP_H_INCLUDED__
|
||||
|
||||
#include "PluginSpecs.h"
|
||||
|
||||
#include "ExportProlog.h"
|
||||
|
||||
typedef unsigned char (*TARAM_Read_U8)(const unsigned int _uAddress);
|
||||
typedef unsigned char* (*TGetMemoryPointer)(const unsigned int _uAddress);
|
||||
typedef unsigned char* (*TGetARAMPointer)(void);
|
||||
typedef void (*TLog)(const char* _szMessage);
|
||||
typedef char * (*TName)(void);
|
||||
typedef void (*TDebuggerBreak)(void);
|
||||
typedef void (*TGenerateDSPInt)(void);
|
||||
typedef unsigned int(*TAudioGetStreaming)(short* _pDestBuffer, unsigned int _numSamples);
|
||||
@ -24,6 +24,7 @@ typedef struct
|
||||
TGetMemoryPointer pGetMemoryPointer;
|
||||
TGetARAMPointer pGetARAMPointer;
|
||||
TLog pLog;
|
||||
TName pName;
|
||||
TDebuggerBreak pDebuggerBreak;
|
||||
TGenerateDSPInt pGenerateDSPInterrupt;
|
||||
TAudioGetStreaming pGetAudioStreaming;
|
||||
|
Reference in New Issue
Block a user