]> git.draconx.ca Git - upkg.git/blob - src/engine/music.h
Add copyright notices.
[upkg.git] / src / engine / music.h
1 /*
2  *  upkg: tool for manipulating Unreal Tournament packages.
3  *  Copyright (C) 2009 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 2 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, write to the Free Software
17  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19
20 #ifndef MUSIC_H_
21 #define MUSIC_H_
22
23 #include <glib-object.h>
24 #include "uobject.h"
25
26 #define ENGINE_MUSIC_TYPE (engine_music_get_type())
27 #define ENGINE_MUSIC(obj) \
28         G_TYPE_CHECK_INSTANCE_CAST(obj, ENGINE_MUSIC_TYPE, EngineMusic)
29 #define ENGINE_MUSIC_CLASS(class) \
30         G_TYPE_CHECK_CLASS_CAST(class, ENGINE_MUSIC_TYPE, EngineMusicClass)
31 #define ENGINE_IS_MUSIC(obj) \
32         G_TYPE_CHECK_INSTANCE_TYPE(obj, ENGINE_MUSIC_TYPE)
33 #define ENGINE_IS_MUSIC_CLASS(class) \
34         G_TYPE_CHECK_CLASS_TYPE(class, ENGINE_MUSIC_TYPE, EngineMusicClass)
35
36 typedef struct EngineMusic      EngineMusic;
37 typedef struct EngineMusicClass EngineMusicClass;
38
39 struct EngineMusic {
40         UObject parent;
41 };
42
43 struct EngineMusicClass {
44         UObjectClass parent;
45 };
46
47 GType engine_music_get_type(void);
48 void music_register(GTypeModule *m);
49
50 #endif