search for: _wgetenv

Displaying 1 result from an estimated 1 matches for "_wgetenv".

Did you mean: _setenv
2015 May 11
0
Windows environmental variables
...p; set environmental variables in Windows (I just discuss the UTF16 "widechar" methods): 1) the Win32 interface, using GetEnvironmentVariableW, SetEnvironmentVariableW https://msdn.microsoft.com/en-us/library/windows/desktop/ms683188%28v=vs.85%29.aspx 2) the POSIX-style interface, using _wgetenv, _wputenv https://msdn.microsoft.com/en-us/library/tehxacec.aspx The problem arises due to the fact that these don't quite do the same thing: the POSIX-style interface, used by R, operates at the runtime level (msvcrt), which makes its own copy of the environmental variables. Now, this is not...