annotate include/SDL_getenv.h @ 1316:0781906086fa

*** empty log message ***
author Sam Lantinga <slouken@libsdl.org>
date Wed, 01 Feb 2006 08:24:32 +0000
parents c9b51268668f
children 450721ad5436
rev   line source
1277
088b806d877e *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents: 1268
diff changeset
1 /*
088b806d877e *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents: 1268
diff changeset
2 SDL - Simple DirectMedia Layer
1312
c9b51268668f Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents: 1277
diff changeset
3 Copyright (C) 1997-2006 Sam Lantinga
1277
088b806d877e *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents: 1268
diff changeset
4
088b806d877e *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents: 1268
diff changeset
5 This library is free software; you can redistribute it and/or
1312
c9b51268668f Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents: 1277
diff changeset
6 modify it under the terms of the GNU Lesser General Public
1277
088b806d877e *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents: 1268
diff changeset
7 License as published by the Free Software Foundation; either
1312
c9b51268668f Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents: 1277
diff changeset
8 version 2.1 of the License, or (at your option) any later version.
1277
088b806d877e *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents: 1268
diff changeset
9
088b806d877e *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents: 1268
diff changeset
10 This library is distributed in the hope that it will be useful,
088b806d877e *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents: 1268
diff changeset
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
088b806d877e *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents: 1268
diff changeset
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1312
c9b51268668f Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents: 1277
diff changeset
13 Lesser General Public License for more details.
1277
088b806d877e *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents: 1268
diff changeset
14
1312
c9b51268668f Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents: 1277
diff changeset
15 You should have received a copy of the GNU Lesser General Public
c9b51268668f Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents: 1277
diff changeset
16 License along with this library; if not, write to the Free Software
c9b51268668f Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents: 1277
diff changeset
17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
1277
088b806d877e *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents: 1268
diff changeset
18
088b806d877e *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents: 1268
diff changeset
19 Sam Lantinga
088b806d877e *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents: 1268
diff changeset
20 slouken@libsdl.org
088b806d877e *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents: 1268
diff changeset
21 */
088b806d877e *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents: 1268
diff changeset
22
088b806d877e *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents: 1268
diff changeset
23 #ifndef _SDL_getenv_h
088b806d877e *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents: 1268
diff changeset
24 #define _SDL_getenv_h
088b806d877e *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents: 1268
diff changeset
25
088b806d877e *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents: 1268
diff changeset
26 #include "begin_code.h"
088b806d877e *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents: 1268
diff changeset
27 /* Set up for C function definitions, even when using C++ */
088b806d877e *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents: 1268
diff changeset
28 #ifdef __cplusplus
088b806d877e *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents: 1268
diff changeset
29 extern "C" {
088b806d877e *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents: 1268
diff changeset
30 #endif
0
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
31
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
32 /* Not all environments have a working getenv()/putenv() */
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
33
1268
f098b247299d Use Win32 API for putenv/getenv to avoid C runtime conflicts
Sam Lantinga <slouken@libsdl.org>
parents: 337
diff changeset
34 #if defined(macintosh) || defined(WIN32) || defined(_WIN32_WCE)
0
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
35 #define NEED_SDL_GETENV
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
36 #endif
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
37
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
38 #ifdef NEED_SDL_GETENV
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
39
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
40 /* Put a variable of the form "name=value" into the environment */
337
9154ec9ca3d2 Explicitly specify the SDL API calling convention (C by default)
Sam Lantinga <slouken@libsdl.org>
parents: 0
diff changeset
41 extern DECLSPEC int SDLCALL SDL_putenv(const char *variable);
0
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
42 #define putenv(X) SDL_putenv(X)
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
43
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
44 /* Retrieve a variable named "name" from the environment */
337
9154ec9ca3d2 Explicitly specify the SDL API calling convention (C by default)
Sam Lantinga <slouken@libsdl.org>
parents: 0
diff changeset
45 extern DECLSPEC char * SDLCALL SDL_getenv(const char *name);
0
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
46 #define getenv(X) SDL_getenv(X)
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
47
1277
088b806d877e *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents: 1268
diff changeset
48 #endif /* NEED_GETENV */
088b806d877e *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents: 1268
diff changeset
49
0
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
50 /* Ends C function definitions when using C++ */
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
51 #ifdef __cplusplus
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
52 }
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
53 #endif
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
54 #include "close_code.h"
74212992fb08 Initial revision
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
55
1277
088b806d877e *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents: 1268
diff changeset
56 #endif /* _SDL_getenv_h */