Files
pspsdk/src/kernel/pspaudiorouting.h
Carsten Teibes 7c6e46b487 Remove outdated svn ids, change url, fix permissions
Convert to unix line endings
2020-05-08 00:50:41 +02:00

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