summaryrefslogtreecommitdiff
path: root/wince/env.h
blob: 96805c31007744ee539f3f5c69082792465c3f30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 */