1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/*******************************************************************
* File automatically generated by rebuild_wrappers.py (v2.2.0.18) *
*******************************************************************/
#ifndef __wrappedsdl1mixerTYPES_H_
#define __wrappedsdl1mixerTYPES_H_
#ifndef LIBNAME
#error You should only #include this file inside a wrapped*.c file
#endif
#ifndef ADDED_FUNCTIONS
#define ADDED_FUNCTIONS()
#endif
typedef void (*vFp_t)(void*);
typedef void* (*pFp_t)(void*);
typedef void (*vFpp_t)(void*, void*);
typedef int32_t (*iFip_t)(int32_t, void*);
typedef void* (*pFpi_t)(void*, int32_t);
typedef void* (*pFpii_t)(void*, int32_t, int32_t);
typedef int32_t (*iFippp_t)(int32_t, void*, void*, void*);
#define SUPER() ADDED_FUNCTIONS() \
GO(Mix_ChannelFinished, vFp_t) \
GO(Mix_HookMusicFinished, vFp_t) \
GO(Mix_LoadMUS_RW, pFp_t) \
GO(Mix_HookMusic, vFpp_t) \
GO(Mix_SetPostMix, vFpp_t) \
GO(Mix_UnregisterEffect, iFip_t) \
GO(Mix_LoadWAV_RW, pFpi_t) \
GO(Mix_LoadMUSType_RW, pFpii_t) \
GO(Mix_RegisterEffect, iFippp_t)
#endif // __wrappedsdl1mixerTYPES_H_
|