mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 07:21:58 +00:00
85c0d47043
Update .cbp and .vcproj file to refer to our copy of SDL/SDL2 rather than looking in C:\ git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@1174 af15c1b1-3010-417e-b628-4374ebc0bcbd
11 lines
183 B
C
11 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_ */
|