September 10, 2010
http://d.puremagic.com/issues/show_bug.cgi?id=4848

           Summary: core.sys.windows.windows: Environment functions
           Product: D
           Version: D2
          Platform: Other
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: druntime
        AssignedTo: sean@invisibleduck.org
        ReportedBy: bugzilla@kyllingen.net


--- Comment #0 from Lars T. Kyllingstad <bugzilla@kyllingen.net> 2010-09-10 00:57:22 PDT ---
Some declarations that belong in the Windows header:

alias CHAR*  LPCH;
alias WCHAR* LPWCH;
LPCH  GetEnvironmentStringsA();
LPWCH GetEnvironmentStringsW();
BOOL FreeEnvironmentStringsA(LPCH  lpszEnvironmentBlock);
BOOL FreeEnvironmentStringsW(LPWCH lpszEnvironmentBlock);
DWORD GetEnvironmentVariableA(LPCSTR  lpName, LPSTR  lpBuffer, DWORD nSize);
DWORD GetEnvironmentVariableW(LPCWSTR lpName, LPWSTR lpBuffer, DWORD nSize);
BOOL SetEnvironmentVariableA(LPCSTR  lpName, LPCSTR  lpValue);
BOOL SetEnvironmentVariableW(LPCWSTR lpName, LPCWSTR lpValue);

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
October 10, 2012
http://d.puremagic.com/issues/show_bug.cgi?id=4848


Alex Rønne Petersen <alex@lycus.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |alex@lycus.org
         Resolution|                            |FIXED


--- Comment #1 from Alex Rønne Petersen <alex@lycus.org> 2012-10-10 03:46:44 CEST ---
These are now present.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------