Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4973 right-hear 1
 
2
3
 
4
#define NEED_SDL_GETENV
5
#endif
6
7
 
8
9
 
10
/* Set up for C function definitions, even when using C++ */
11
#ifdef __cplusplus
12
extern "C" {
13
#endif
14
15
 
16
extern DECLSPEC int SDLCALL SDL_putenv(const char *variable);
17
#define putenv(X)   SDL_putenv(X)
18
19
 
20
extern DECLSPEC char * SDLCALL SDL_getenv(const char *name);
21
#define getenv(X)     SDL_getenv(X)
22
23
 
24
#ifdef __cplusplus
25
}
26
#endif
27
#include "close_code.h"
28
29
 
30