Displaying 1 result from an estimated 1 matches for "ms683188".
Did you mean:
ms681388
2015 May 11
0
Windows environmental variables
...tead: you may want
to update this).
There are 2 ways to get & 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 make...