X-Git-Url: https://deadsoftware.ru/gitweb?p=flatwaifu.git;a=blobdiff_plain;f=src%2Fstubsnd%2Fsound.c;h=b47ba0c3473950d7577f650237ccdadcd941d1eb;hp=58435f177f03fa4a7bc348a74eeb24a192c3e52a;hb=4a99fe51561ca331df54512eb25c502d0fcd2b55;hpb=efb17348438f10c929e2e9807013969f71802661 diff --git a/src/stubsnd/sound.c b/src/stubsnd/sound.c index 58435f1..b47ba0c 100644 --- a/src/stubsnd/sound.c +++ b/src/stubsnd/sound.c @@ -2,49 +2,66 @@ #include "sound.h" #include "music.h" -short snd_vol; +/* Music */ -short mus_vol; -char music_random; -int music_time; -int music_fade; +const cfg_t *MUS_args (void) { + return NULL; +} -/* Music */ +const cfg_t *MUS_conf (void) { + return NULL; +} + +const menu_t *MUS_menu (void) { + return NULL; +} -void S_initmusic (void) { +void MUS_init (void) { } -void S_donemusic (void) { +void MUS_done (void) { } -void S_startmusic (int time) { +void MUS_start (int time) { } -void S_stopmusic (void) { +void MUS_stop (void) { } -void S_volumemusic (int v) { +void MUS_volume (int v) { } -void F_loadmus (char n[8]) { +void MUS_load (char n[8]) { } -void F_freemus (void) { +void MUS_free (void) { } -void S_updatemusic (void) { +void MUS_update (void) { } /* Sound */ +const cfg_t *S_args (void) { + return NULL; +} + +const cfg_t *S_conf (void) { + return NULL; +} + +const menu_t *S_menu (void) { + return NULL; +} + snd_t *S_get (int id) { return NULL; }