Add efacf056cd
This commit is contained in:
24
dockerdoom/trunk/wince/env.h
Normal file
24
dockerdoom/trunk/wince/env.h
Normal file
@ -0,0 +1,24 @@
|
||||
//
|
||||
// "Extension" implementation of getenv for Windows CE.
|
||||
//
|
||||
// I (Simon Howard) release this file to the public domain.
|
||||
//
|
||||
|
||||
#ifndef WINCE_ENV_H
|
||||
#define WINCE_ENV_H
|
||||
|
||||
// SDL provides an implementation of getenv/putenv:
|
||||
|
||||
#include "SDL_getenv.h"
|
||||
|
||||
#ifndef getenv
|
||||
#define getenv SDL_getenv
|
||||
#endif
|
||||
#ifndef putenv
|
||||
#define putenv SDL_putenv
|
||||
#endif
|
||||
|
||||
extern void PopulateEnvironment(void);
|
||||
|
||||
#endif /* #ifndef WINCE_ENV_H */
|
||||
|
Reference in New Issue
Block a user