aboutsummaryrefslogtreecommitdiffstats
path: root/code/SDL12/include/SDL_getenv.h
diff options
context:
space:
mode:
authoricculus <icculus@edf5b092-35ff-0310-97b2-ce42778d08ea>2005-11-26 07:59:00 +0000
committericculus <icculus@edf5b092-35ff-0310-97b2-ce42778d08ea>2005-11-26 07:59:00 +0000
commit26b9cf5a0ca15a80690060daf5f3cbf0576ade28 (patch)
tree354668c8d05c47c654ca72adf170914b17877f1f /code/SDL12/include/SDL_getenv.h
parent441c7633e0aa67faa91dc5896ee83e6c29de0ba6 (diff)
downloadioquake3-aero-26b9cf5a0ca15a80690060daf5f3cbf0576ade28.tar.gz
ioquake3-aero-26b9cf5a0ca15a80690060daf5f3cbf0576ade28.zip
SDL and OpenAL headers.
git-svn-id: svn://svn.icculus.org/quake3/trunk@374 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/SDL12/include/SDL_getenv.h')
-rw-r--r--code/SDL12/include/SDL_getenv.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/code/SDL12/include/SDL_getenv.h b/code/SDL12/include/SDL_getenv.h
new file mode 100644
index 0000000..42037dd
--- /dev/null
+++ b/code/SDL12/include/SDL_getenv.h
@@ -0,0 +1,30 @@
+
+/* Not all environments have a working getenv()/putenv() */
+
+#if defined(macintosh) || defined(_WIN32_WCE)
+#define NEED_SDL_GETENV
+#endif
+
+#ifdef NEED_SDL_GETENV
+
+#include "begin_code.h"
+/* Set up for C function definitions, even when using C++ */
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/* Put a variable of the form "name=value" into the environment */
+extern DECLSPEC int SDLCALL SDL_putenv(const char *variable);
+#define putenv(X) SDL_putenv(X)
+
+/* Retrieve a variable named "name" from the environment */
+extern DECLSPEC char * SDLCALL SDL_getenv(const char *name);
+#define getenv(X) SDL_getenv(X)
+
+/* Ends C function definitions when using C++ */
+#ifdef __cplusplus
+}
+#endif
+#include "close_code.h"
+
+#endif /* NEED_GETENV */