2001-01-11 00:59:25 +01:00
|
|
|
/*
|
|
|
|
* msvcrt.dll environment functions
|
|
|
|
*
|
|
|
|
* Copyright 1996,1998 Marcus Meissner
|
|
|
|
* Copyright 1996 Jukka Iivonen
|
|
|
|
* Copyright 1997,2000 Uwe Bonnes
|
|
|
|
* Copyright 2000 Jon Griffiths
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2001-01-11 00:59:25 +01:00
|
|
|
*/
|
|
|
|
#include "wine/unicode.h"
|
|
|
|
#include "msvcrt.h"
|
|
|
|
|
2001-04-11 01:25:25 +02:00
|
|
|
#include "msvcrt/stdlib.h"
|
|
|
|
|
2001-01-11 00:59:25 +01:00
|
|
|
|
2002-01-22 01:57:16 +01:00
|
|
|
#include "wine/debug.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(msvcrt);
|
2001-01-11 00:59:25 +01:00
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* getenv (MSVCRT.@)
|
|
|
|
*/
|
2001-04-10 23:16:07 +02:00
|
|
|
char *MSVCRT_getenv(const char *name)
|
2001-01-11 00:59:25 +01:00
|
|
|
{
|
2001-01-22 03:21:54 +01:00
|
|
|
char *environ = GetEnvironmentStringsA();
|
|
|
|
char *pp,*pos = NULL;
|
2001-11-23 19:30:19 +01:00
|
|
|
unsigned int length=strlen(name);
|
2001-01-11 00:59:25 +01:00
|
|
|
|
|
|
|
for (pp = environ; (*pp); pp = pp + strlen(pp) +1)
|
|
|
|
{
|
2001-11-23 19:30:19 +01:00
|
|
|
pos =strchr(pp,'=');
|
|
|
|
if ((pos) && ((pos - pp) == length))
|
|
|
|
{
|
2001-12-05 23:09:00 +01:00
|
|
|
if (!strncasecmp(pp,name,length)) break;
|
2001-11-23 19:30:19 +01:00
|
|
|
}
|
2001-01-11 00:59:25 +01:00
|
|
|
}
|
2001-11-23 19:30:19 +01:00
|
|
|
if ((*pp)&& (pos))
|
2001-01-11 00:59:25 +01:00
|
|
|
{
|
|
|
|
pp = pos+1;
|
|
|
|
TRACE("got %s\n",pp);
|
|
|
|
}
|
2001-11-23 19:30:19 +01:00
|
|
|
else
|
|
|
|
pp = 0;
|
2001-01-11 00:59:25 +01:00
|
|
|
FreeEnvironmentStringsA( environ );
|
|
|
|
return pp;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* _wgetenv (MSVCRT.@)
|
|
|
|
*/
|
2002-12-19 05:21:30 +01:00
|
|
|
MSVCRT_wchar_t *_wgetenv(const MSVCRT_wchar_t *name)
|
2001-01-11 00:59:25 +01:00
|
|
|
{
|
2002-12-19 05:21:30 +01:00
|
|
|
MSVCRT_wchar_t* environ = GetEnvironmentStringsW();
|
|
|
|
MSVCRT_wchar_t* pp,*pos = NULL;
|
2001-11-23 19:30:19 +01:00
|
|
|
unsigned int length=strlenW(name);
|
2001-01-11 00:59:25 +01:00
|
|
|
|
|
|
|
for (pp = environ; (*pp); pp = pp + strlenW(pp) + 1)
|
|
|
|
{
|
2001-11-23 19:30:19 +01:00
|
|
|
pos = strchrW(pp,'=');
|
|
|
|
if ((pos) && ((pos - pp) == length))
|
|
|
|
{
|
2001-12-05 23:09:00 +01:00
|
|
|
if (!strncmpiW(pp,name,length))
|
2001-11-23 19:30:19 +01:00
|
|
|
{
|
|
|
|
pp = pos+1;
|
|
|
|
TRACE("got %s\n",debugstr_w(pp));
|
|
|
|
/* can't free pointer since we are returning it */
|
|
|
|
/* should probably use MSVCRT_wenviron instead */
|
|
|
|
FIXME( "memory leak\n" );
|
|
|
|
return pp;
|
|
|
|
}
|
|
|
|
}
|
2001-01-11 00:59:25 +01:00
|
|
|
}
|
|
|
|
FreeEnvironmentStringsW( environ );
|
2001-11-23 19:30:19 +01:00
|
|
|
return NULL;
|
2001-01-11 00:59:25 +01:00
|
|
|
}
|
2001-01-22 03:21:54 +01:00
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* _putenv (MSVCRT.@)
|
|
|
|
*/
|
2001-04-10 23:16:07 +02:00
|
|
|
int _putenv(const char *str)
|
2001-01-22 03:21:54 +01:00
|
|
|
{
|
|
|
|
char name[256], value[512];
|
|
|
|
char *dst = name;
|
2002-07-23 22:59:12 +02:00
|
|
|
int ret;
|
2001-01-22 03:21:54 +01:00
|
|
|
|
|
|
|
TRACE("%s\n", str);
|
|
|
|
|
|
|
|
if (!str)
|
|
|
|
return -1;
|
|
|
|
while (*str && *str != '=')
|
|
|
|
*dst++ = *str++;
|
|
|
|
if (!*str++)
|
|
|
|
return -1;
|
|
|
|
*dst = '\0';
|
|
|
|
dst = value;
|
|
|
|
while (*str)
|
|
|
|
*dst++ = *str++;
|
|
|
|
*dst = '\0';
|
|
|
|
|
2002-07-23 22:59:12 +02:00
|
|
|
ret = !SetEnvironmentVariableA(name, value[0] ? value : NULL);
|
|
|
|
/* Update the __p__environ array only when already initialized */
|
|
|
|
if (MSVCRT__environ)
|
|
|
|
MSVCRT__environ = msvcrt_SnapshotOfEnvironmentA(MSVCRT__environ);
|
|
|
|
if (MSVCRT__wenviron)
|
|
|
|
MSVCRT__wenviron = msvcrt_SnapshotOfEnvironmentW(MSVCRT__wenviron);
|
|
|
|
return ret;
|
2001-01-22 03:21:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* _wputenv (MSVCRT.@)
|
|
|
|
*/
|
2002-12-19 05:21:30 +01:00
|
|
|
int _wputenv(const MSVCRT_wchar_t *str)
|
2001-01-22 03:21:54 +01:00
|
|
|
{
|
2002-12-19 05:21:30 +01:00
|
|
|
MSVCRT_wchar_t name[256], value[512];
|
|
|
|
MSVCRT_wchar_t *dst = name;
|
2002-07-23 22:59:12 +02:00
|
|
|
int ret;
|
2001-01-22 03:21:54 +01:00
|
|
|
|
|
|
|
TRACE("%s\n", debugstr_w(str));
|
|
|
|
|
|
|
|
if (!str)
|
|
|
|
return -1;
|
2002-12-19 05:21:30 +01:00
|
|
|
while (*str && *str != '=')
|
2001-01-22 03:21:54 +01:00
|
|
|
*dst++ = *str++;
|
|
|
|
if (!*str++)
|
|
|
|
return -1;
|
2002-12-19 05:21:30 +01:00
|
|
|
*dst = 0;
|
2001-01-22 03:21:54 +01:00
|
|
|
dst = value;
|
|
|
|
while (*str)
|
|
|
|
*dst++ = *str++;
|
2002-12-19 05:21:30 +01:00
|
|
|
*dst = 0;
|
2001-01-22 03:21:54 +01:00
|
|
|
|
2002-07-23 22:59:12 +02:00
|
|
|
ret = !SetEnvironmentVariableW(name, value[0] ? value : NULL);
|
|
|
|
/* Update the __p__environ array only when already initialized */
|
|
|
|
if (MSVCRT__environ)
|
|
|
|
MSVCRT__environ = msvcrt_SnapshotOfEnvironmentA(MSVCRT__environ);
|
|
|
|
if (MSVCRT__wenviron)
|
|
|
|
MSVCRT__wenviron = msvcrt_SnapshotOfEnvironmentW(MSVCRT__wenviron);
|
|
|
|
return ret;
|
2001-01-22 03:21:54 +01:00
|
|
|
}
|