blob: d91f3fab0b3d85489e9aeac36829c2f89136c7f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//
// "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"
extern void PopulateEnvironment(void);
#endif /* #ifndef WINCE_ENV_H */
|