1 /* 2 * OpenBOR - http://www.LavaLit.com 3 * ----------------------------------------------------------------------- 4 * Licensed under the BSD license, see LICENSE in OpenBOR root for details. 5 * 6 * Copyright (c) 2004 - 2011 OpenBOR Team 7 */ 8 SB_playstart(int bits,int samplerate)9int SB_playstart(int bits, int samplerate){ 10 xbox_pause_audio(0); 11 return 1; 12 } 13 SB_playstop()14void SB_playstop(){ 15 xbox_pause_audio(1); 16 } 17 SB_getvolume(char dev)18char SB_getvolume(char dev){ 19 return 0; 20 } 21 SB_setvolume(char dev,char volume)22char SB_setvolume(char dev, char volume){ 23 return 0; 24 } 25