/* 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 . */ #ifndef MUSIC_H_INCLUDED #define MUSIC_H_INCLUDED #include "menu.h" #include "system.h" const cfg_t *MUS_args (void); const cfg_t *MUS_conf (void); const menu_t *MUS_menu (void); void MUS_init (void); void MUS_done (void); void MUS_start (int time); void MUS_stop (void); void MUS_volume (int v); void MUS_load (char n[8]); void MUS_free (void); void MUS_update (void); #endif /* MUSIC_H_INCLUDED */