mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-26 08:50:55 +00:00
Add ifdef guard
git-svn-id: https://svn.eduke32.com/eduke32@7931 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
67b7d2408b
commit
53cd67b0f2
1 changed files with 4 additions and 0 deletions
|
@ -18,6 +18,9 @@
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#ifndef driver_sdl_h__
|
||||||
|
#define driver_sdl_h__
|
||||||
|
|
||||||
#include "compat.h"
|
#include "compat.h"
|
||||||
|
|
||||||
int32_t SDLDrv_GetError(void);
|
int32_t SDLDrv_GetError(void);
|
||||||
|
@ -29,3 +32,4 @@ int32_t SDLDrv_PCM_BeginPlayback(char *BufferStart, int32_t BufferSize,
|
||||||
void SDLDrv_PCM_StopPlayback(void);
|
void SDLDrv_PCM_StopPlayback(void);
|
||||||
void SDLDrv_PCM_Lock(void);
|
void SDLDrv_PCM_Lock(void);
|
||||||
void SDLDrv_PCM_Unlock(void);
|
void SDLDrv_PCM_Unlock(void);
|
||||||
|
#endif // driver_sdl_h__
|
||||||
|
|
Loading…
Reference in a new issue