.gitignore added
[dotfiles/.git] / .local / include / python3.9 / pygame / include / pygame_mixer.h
1 /*
2     pygame - Python Game Library
3     Copyright (C) 2000-2001  Pete Shinners
4
5     This library is free software; you can redistribute it and/or
6     modify it under the terms of the GNU Library General Public
7     License as published by the Free Software Foundation; either
8     version 2 of the License, or (at your option) any later version.
9
10     This library 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 GNU
13     Library General Public License for more details.
14
15     You should have received a copy of the GNU Library General Public
16     License along with this library; if not, write to the Free
17     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
19     Pete Shinners
20     pete@shinners.org
21 */
22
23 #ifndef PGMIXER_H
24 #define PGMIXER_H
25
26 #include <Python.h>
27 #include <structmember.h>
28
29 #include "pgcompat.h"
30
31 struct Mix_Chunk;
32
33 typedef struct {
34   PyObject_HEAD
35   Mix_Chunk *chunk;
36   Uint8 *mem;
37   PyObject *weakreflist;
38 } pgSoundObject;
39
40 typedef struct {
41   PyObject_HEAD
42   int chan;
43 } pgChannelObject;
44
45 #define pgSound_AsChunk(x) (((pgSoundObject*)x)->chunk)
46 #define pgChannel_AsInt(x) (((pgChannelObject*)x)->chan)
47
48 #include "pgimport.h"
49
50 #ifndef PYGAMEAPI_MIXER_INTERNAL
51
52 PYGAMEAPI_DEFINE_SLOTS(mixer);
53
54 #define pgSound_Type (*(PyTypeObject*) \
55     PYGAMEAPI_GET_SLOT(mixer, 0))
56
57 #define pgSound_Check(x) ((x)->ob_type == &pgSound_Type)
58
59 #define pgSound_New (*(PyObject*(*)(Mix_Chunk*)) \
60     PYGAMEAPI_GET_SLOT(mixer, 1))
61
62 #define pgSound_Play (*(PyObject*(*)(PyObject*, PyObject*)) \
63     PYGAMEAPI_GET_SLOT(mixer, 2))
64
65 #define pgChannel_Type (*(PyTypeObject*) \
66     PYGAMEAPI_GET_SLOT(mixer, 3))
67 #define pgChannel_Check(x) ((x)->ob_type == &pgChannel_Type)
68
69 #define pgChannel_New (*(PyObject*(*)(int)) \
70     PYGAMEAPI_GET_SLOT(mixer, 4))
71
72 #define pgMixer_AutoInit (*(PyObject*(*)(PyObject*, PyObject*)) \
73     PYGAMEAPI_GET_SLOT(mixer, 5))
74
75 #define pgMixer_AutoQuit (*(void(*)(void)) \
76     PYGAMEAPI_GET_SLOT(mixer, 6))
77
78 #define import_pygame_mixer() _IMPORT_PYGAME_MODULE(mixer)
79
80 #endif /* PYGAMEAPI_MIXER_INTERNAL */
81
82 #endif /* ~PGMIXER_H */