X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;ds=sidebyside;f=src%2Fstubsnd%2Fsound.c;h=41fcf9d2cbc2b6d05149b493e74be602eb699e8e;hb=ef16dea09f87b15fc6d58fae0aa0832e0648c00e;hp=58435f177f03fa4a7bc348a74eeb24a192c3e52a;hpb=a100ff401dc739ae0e57fdbda1848f4db1a24b81;p=flatwaifu.git diff --git a/src/stubsnd/sound.c b/src/stubsnd/sound.c index 58435f1..41fcf9d 100644 --- a/src/stubsnd/sound.c +++ b/src/stubsnd/sound.c @@ -1,50 +1,82 @@ +/* Copyright (C) 2020 SovietPony + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, version 3 of the License ONLY. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #include "glob.h" #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; }