.gitignore added
[dotfiles/.git] / .local / include / python3.9 / pygame / mixer.h
1 #ifndef MIXER_INTERNAL_H
2 #define MIXER_INTERNAL_H
3
4 #include <SDL_mixer.h>
5
6 /* test mixer initializations */
7 #define MIXER_INIT_CHECK() \
8     if(!SDL_WasInit(SDL_INIT_AUDIO)) \
9         return RAISE(pgExc_SDLError, "mixer not initialized")
10
11 #define PYGAMEAPI_MIXER_NUMSLOTS 7
12 #include "include/pygame_mixer.h"
13
14 #endif /* ~MIXER_INTERNAL_H */