rts/src/sfx/sdl-1.2/inc/sfx/port.h

23 lines
243 B
C

#ifndef SFX_SDL1_2_H
#define SFX_SDL1_2_H
#include <SDL/SDL_mixer.h>
#include <stdbool.h>
#ifdef __cplusplus
extern "C"
{
#endif
struct sound
{
Mix_Chunk *chunk;
bool loop;
};
#ifdef __cplusplus
}
#endif
#endif /* SFX_SDL1_2_H */