mirror of
https://github.com/pspdev/pspsdk.git
synced 2025-12-24 12:42:36 +00:00
32 lines
684 B
C
32 lines
684 B
C
/*
|
|
* PSP Software Development Kit - https://github.com/pspdev
|
|
* -----------------------------------------------------------------------
|
|
* Licensed under the BSD license, see LICENSE in PSPSDK root for details.
|
|
*
|
|
* pspaudiorouting.h - Interface to sceAudioRouting.
|
|
*
|
|
* Copyright (c) 2007 Alexander Berl <raphael@fx-world.org>
|
|
*
|
|
*/
|
|
#ifndef __PSPAUDIOROUTING_H__
|
|
#define __PSPAUDIOROUTING_H__
|
|
|
|
/**
|
|
* Set routing mode.
|
|
*
|
|
* @param mode The routing mode to set (0 or 1)
|
|
*
|
|
* @return the previous routing mode, or < 0 on error
|
|
*/
|
|
int sceAudioRoutingSetMode( int mode );
|
|
|
|
/**
|
|
* Get routing mode.
|
|
*
|
|
* @return the current routing mode.
|
|
*/
|
|
int sceAudioRoutingGetMode();
|
|
|
|
#endif
|
|
|