mirror of
https://github.com/Polprzewodnikowy/N64FlashcartMenu.git
synced 2024-12-02 15:24:16 +01:00
21 lines
271 B
C
21 lines
271 B
C
|
/**
|
||
|
* @file sound.h
|
||
|
* @brief Menu Sound
|
||
|
* @ingroup menu
|
||
|
*/
|
||
|
|
||
|
#ifndef SOUND_H__
|
||
|
#define SOUND_H__
|
||
|
|
||
|
|
||
|
#define SOUND_MP3_PLAYER_CHANNEL (0)
|
||
|
|
||
|
|
||
|
void sound_init_default (void);
|
||
|
void sound_init_mp3_playback (void);
|
||
|
void sound_poll (void);
|
||
|
void sound_close (void);
|
||
|
|
||
|
|
||
|
#endif
|