]> git.draconx.ca Git - upkg.git/blob - src/engine/music.h
f74c1ab8367c0ff7cd2ae319df22b497c569f620
[upkg.git] / src / engine / music.h
1 /*
2  *  upkg: tool for manipulating Unreal Tournament packages.
3  *  Copyright © 2009-2011 Nick Bowler
4  *
5  *  This program is free software: you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation, either version 3 of the License, or
8  *  (at your option) any later version.
9  *
10  *  This program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19 #ifndef MUSIC_H_
20 #define MUSIC_H_
21
22 #include <glib-object.h>
23 #include <uobject/uobject.h>
24
25 #define ENGINE_MUSIC_TYPE (engine_music_get_type())
26 #define ENGINE_MUSIC(obj) \
27         G_TYPE_CHECK_INSTANCE_CAST(obj, ENGINE_MUSIC_TYPE, EngineMusic)
28 #define ENGINE_MUSIC_CLASS(class) \
29         G_TYPE_CHECK_CLASS_CAST(class, ENGINE_MUSIC_TYPE, EngineMusicClass)
30 #define ENGINE_IS_MUSIC(obj) \
31         G_TYPE_CHECK_INSTANCE_TYPE(obj, ENGINE_MUSIC_TYPE)
32 #define ENGINE_IS_MUSIC_CLASS(class) \
33         G_TYPE_CHECK_CLASS_TYPE(class, ENGINE_MUSIC_TYPE, EngineMusicClass)
34
35 typedef struct EngineMusic      EngineMusic;
36 typedef struct EngineMusicClass EngineMusicClass;
37
38 struct EngineMusic {
39         UObject parent;
40 };
41
42 struct EngineMusicClass {
43         UObjectClass parent;
44 };
45
46 GType engine_music_get_type(void);
47 void music_register(GTypeModule *m);
48
49 #endif