1 #ifndef _SOUNDS_H
2 #define _SOUNDS_H
3 /*!
4  * Sound effect library.
5  *
6  * This provides some sound effects for the SM1000 UI.
7  *
8  * Author Stuart Longland <me@vk4msl.id.au>
9  * Copyright (C) 2015 FreeDV project.
10  *
11  * This program is free software; you can redistribute it and/or modify it
12  * under the terms of the GNU Lesser General Public License version 2.1,
13  * as published by the Free Software Foundation.  This program is
14  * distributed in the hope that it will be useful, but WITHOUT ANY
15  * WARRANTY; without even the implied warranty of MERCHANTABILITY or
16  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
17  * for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this program; if not, see
21  * <http://www.gnu.org/licenses/>.
22  */
23 
24 #include "sfx.h"
25 
26 /*! Start-up tune / selected tune */
27 extern const struct sfx_note_t sound_startup[];
28 
29 /*! Returned tune */
30 extern const struct sfx_note_t sound_returned[];
31 
32 /*! Click sound */
33 extern const struct sfx_note_t sound_click[];
34 
35 /*! Death march tune */
36 extern const struct sfx_note_t sound_death_march[];
37 
38 #endif
39