00001 /* 00002 * PSP Software Development Kit - http://www.pspdev.org 00003 * ----------------------------------------------------------------------- 00004 * Licensed under the BSD license, see LICENSE in PSPSDK root for details. 00005 * 00006 * pspaudio.h - Prototypes for the sceAudio library. 00007 * 00008 * Copyright (c) 2005 Adresd 00009 * Copyright (c) 2005 Marcus R. Brown <mrbrown@ocgnet.org> 00010 * Copyright (c) 2007 cooleyes 00011 * Copyright (c) 2007 Alexander Berl <raphael@fx-world.org> 00012 * 00013 * $Id: pspaudio_kernel.h 2433 2008-10-15 10:00:27Z iwn $ 00014 */ 00015 #ifndef PSPAUDIO_KERNEL_H 00016 #define PSPAUDIO_KERNEL_H 00017 00018 #ifdef __cplusplus 00019 extern "C" { 00020 #endif 00021 00027 00028 enum PspAudioFrequencies { 00030 PSP_AUDIO_FREQ_44K = 44100, 00032 PSP_AUDIO_FREQ_48K = 48000 00033 }; 00034 00042 int sceAudioSetFrequency(int frequency); 00045 #ifdef __cplusplus 00046 } 00047 #endif 00048 00049 #endif /* PSPAUDIO_KERNEL_H */
1.7.1