mirror of
https://github.com/joel16/SDL2.git
synced 2025-04-08 09:41:38 +00:00

It contains the following functions: SDL_LoadObject(), SDL_LoadFunction(), SDL_UnloadObject() The UNIX esd and arts audio code use these to dynamically load their respective audio libraries. --HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40295
12 lines
183 B
C
12 lines
183 B
C
|
|
#ifndef _SDLname_h_
|
|
#define _SDLname_h_
|
|
|
|
#if defined(__STDC__) || defined(__cplusplus)
|
|
#define NeedFunctionPrototypes 1
|
|
#endif
|
|
|
|
#define SDL_NAME(X) SDL_##X
|
|
|
|
#endif /* _SDLname_h_ */
|