24 lines
1.1 KiB
C
24 lines
1.1 KiB
C
|
/****************************************************************************
|
||
|
* *
|
||
|
* Project64 - A Nintendo 64 emulator. *
|
||
|
* http://www.pj64-emu.com/ *
|
||
|
* Copyright (C) 2016 Project64. All rights reserved. *
|
||
|
* *
|
||
|
* License: *
|
||
|
* GNU/GPLv2 http://www.gnu.org/licenses/gpl-2.0.html *
|
||
|
* version 2 of the License, or (at your option) any later version. *
|
||
|
* *
|
||
|
****************************************************************************/
|
||
|
#pragma once
|
||
|
#include <Common/TraceModulesCommon.h>
|
||
|
#include <Common/Trace.h>
|
||
|
|
||
|
enum TraceModuleAndroidAudio
|
||
|
{
|
||
|
TraceSettings = MaxTraceModuleCommon,
|
||
|
TraceAudioInitShutdown,
|
||
|
TraceAudioInterface,
|
||
|
MaxTraceModulePluginAudio,
|
||
|
};
|
||
|
|
||
|
void SetupTrace(void);
|