mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
20 lines
511 B
C++
20 lines
511 B
C++
#include "stdafx.h"
|
|
#include "Emu/System.h"
|
|
#include "Emu/ARMv7/PSVFuncList.h"
|
|
|
|
extern psv_log_base sceAudioIn;
|
|
|
|
#define REG_FUNC(nid, name) reg_psv_func(nid, &sceAudioIn, #name, name)
|
|
|
|
psv_log_base sceAudioIn("SceAudioIn", []()
|
|
{
|
|
sceAudioIn.on_load = nullptr;
|
|
sceAudioIn.on_unload = nullptr;
|
|
sceAudioIn.on_stop = nullptr;
|
|
|
|
//REG_FUNC(0x638ADD2D, sceAudioInInput);
|
|
//REG_FUNC(0x39B50DC1, sceAudioInOpenPort);
|
|
//REG_FUNC(0x3A61B8C4, sceAudioInReleasePort);
|
|
//REG_FUNC(0x566AC433, sceAudioInGetAdopt);
|
|
});
|