digitalmars.D.learn - How to get whole env.
- Dawid =?ISO-8859-2?Q?Ci=EA=BFarkiewicz?= (8/8) Apr 22 2005 Simple:
- Manfred Nowak (5/6) Apr 22 2005 Try along the lines of
- Dawid =?ISO-8859-2?Q?Ci=EA=BFarkiewicz?= (6/13) Apr 27 2005 Isn't this a bug/lack of functionality that I have to manually change Ph...
- David L. Davis (104/112) Apr 22 2005 Dawid, I'm not sure which OS you're on from looking at your message, but...
- Dawid =?ISO-8859-2?Q?Ci=EA=BFarkiewicz?= (5/8) Apr 27 2005 I'm using linux. Thanks you anyway.
Simple: extern(C){ char **environ; } does not work; -- Dawid Ciężarkiewicz | arael jid: arael fov.pl
Apr 22 2005
Dawid Ciężarkiewicz <arael fov.pl> wrote: [...]does not work;Try along the lines of http://www.digitalmars.com/drn-bin/wwwnews?D/26842 -manfred
Apr 22 2005
Manfred Nowak wrote:Dawid Ciężarkiewicz <arael fov.pl> wrote: [...]Isn't this a bug/lack of functionality that I have to manually change Phobos source to do this? -- Dawid Ciężarkiewicz | arael jid: arael fov.pldoes not work;Try along the lines of http://www.digitalmars.com/drn-bin/wwwnews?D/26842
Apr 27 2005
In article <d4btvq$ac5$1 digitaldaemon.com>, Dawid =?ISO-8859-2?Q?Ci=EA=BFarkiewicz?= says...Simple: extern(C){ char **environ; } does not work; -- Dawid Ciężarkiewicz | arael jid: arael fov.plDawid, I'm not sure which OS you're on from looking at your message, but in WinXP it can be done with Win32 API calls. Below is an example I found on MSDN Online and modified it to work in D. Output: ------------------ C:\dmd>dmd getenv.d C:\dmd\bin\..\..\dm\bin\link.exe getenv,,,user32+kernel32/noi; C:\dmd>getenv =::=::\ =C:=C:\dmd =ExitCode=00000000 ALLUSERSPROFILE=C:\Documents and Settings\All Users APPDATA=C:\Documents and Settings\SPOTTE~1\Application Data CommonProgramFiles=C:\Program Files\Common Files COMPUTERNAME=HeavyMetal ComSpec=C:\WINDOWS\system32\cmd.exe EDPATH=C:\watcom\EDDAT FINCLUDE=C:\watcom\SRC\FORTRAN GMAXLOC=C:\gmax\ HOMEDRIVE=C: HOMEPATH=\Documents and Settings\SpottedTiger INCLUDE=C:\watcom\H;C:\watcom\H\NT LIB=C:\Program Files\Microsoft Visual Studio\VC98\mfc\lib; C:\Program Files\Microsoft Visual Studio\VC98\lib; C:\Program Files\Microsoft Visual Studio .NET\FrameworkSDK\Lib\ MSDevDir=C:\Program Files\Microsoft Visual Studio\Common\MSDev98 NUMBER_OF_PROCESSORS=1 OS=Windows_NT Path=C:\DM;C:\DMD;C:\UT2004\system;C:\watcom\BINNT;C:\watcom\BINW; C:\Program Files\Borland\BDS\1.0\Bin; PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH PROCESSOR_ARCHITECTURE=x86 PROCESSOR_IDENTIFIER=x86 Family 15 Model 1 Stepping 2, GenuineIntel PROCESSOR_LEVEL=15 PROCESSOR_REVISION=0102 ProgramFiles=C:\Program Files PROMPT=$P$G SESSIONNAME=Console SystemDrive=C: SystemRoot=C:\WINDOWS TEMP=C:\DOCUME~1\SPOTTE~1\LOCALS~1\Temp TMP=C:\DOCUME~1\SPOTTE~1\LOCALS~1\Temp tvdumpflags=10 USERPROFILE=C:\Documents and Settings\SpottedTiger C:\WINDOWS\Microsoft Visual JSharp .NET\Framework\v1.0.4205; VSCOMNTOOLS="C:\Program Files\Microsoft Visual Studio .NET\Common7\Tools\" WATCOM=C:\watcom windir=C:\WINDOWS C:\dmd> David L. ------------------------------------------------------------------- "Dare to reach for the Stars...Dare to Dream, Build, and Achieve!" ------------------------------------------------------------------- MKoD: http://spottedtiger.tripod.com/D_Language/D_Main_XP.html
Apr 22 2005
David L. Davis wrote:Dawid, I'm not sure which OS you're on from looking at your message, but in WinXP it can be done with Win32 API calls. Below is an example I found on MSDN Online and modified it to work in D.I'm using linux. Thanks you anyway. -- Dawid Ciężarkiewicz | arael jid: arael fov.pl
Apr 27 2005