28 lines
477 B
C
28 lines
477 B
C
#ifndef _PROTO_SDL2_H
|
|
#define _PROTO_SDL2_H
|
|
|
|
#ifndef EXEC_TYPES_H
|
|
#include <exec/types.h>
|
|
#endif
|
|
#if !defined(CLIB_SDL2_PROTOS_H) && !defined(__GNUC__)
|
|
#include <clib/sdl2_protos.h>
|
|
#endif
|
|
|
|
#ifndef __NOLIBBASE__
|
|
extern struct Library *SDL2Base;
|
|
#endif
|
|
|
|
#ifdef __GNUC__
|
|
#ifdef __AROS__
|
|
#include <defines/sdl2.h>
|
|
#else
|
|
#include <inline/sdl2.h>
|
|
#endif
|
|
#elif defined(__VBCC__)
|
|
#include <inline/sdl2_protos.h>
|
|
#else
|
|
#include <pragma/sdl2_lib.h>
|
|
#endif
|
|
|
|
#endif /* _PROTO_SDL2_H */
|