Implemented SDL_setenv(), moved SDL_putenv() to compat.
Fixes Bugzilla #779. --HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%404330
This commit is contained in:
parent
034bfdf70d
commit
791f5dbce4
13 changed files with 90 additions and 53 deletions
|
@ -267,20 +267,12 @@ char *alloca();
|
|||
extern DECLSPEC char *SDLCALL SDL_getenv(const char *name);
|
||||
#endif
|
||||
|
||||
/**
|
||||
* \warning On some platforms, the string you pass to SDL_putenv() becomes
|
||||
* part of the environment table directly...it will use this specific
|
||||
* buffer, and not a copy of it! This means you can't free it, and
|
||||
* other pieces of code may try to write to it. In practice, this
|
||||
* isn't a big deal, but be aware of the possibility.
|
||||
* However, due to this issue, you should be prepared to
|
||||
* pass a (char*), or be willing to cast away the constness of your
|
||||
* string for this call.
|
||||
*/
|
||||
#ifdef HAVE_PUTENV
|
||||
#define SDL_putenv putenv
|
||||
/* SDL_putenv() has moved to SDL_compat. */
|
||||
#ifdef HAVE_SETENV
|
||||
#define SDL_setenv setenv
|
||||
#else
|
||||
extern DECLSPEC int SDLCALL SDL_putenv(const char *variable);
|
||||
extern DECLSPEC int SDLCALL SDL_setenv(const char *name, const char *value,
|
||||
int overwrite);
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_QSORT
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue