Create work-around for wxGetEnvMap on OpenVMS

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65969 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Jouk Jansen
2010-11-01 09:48:56 +00:00
parent b64f93b67f
commit cc22153550

View File

@@ -557,6 +557,10 @@ bool wxGetEnvMap(wxEnvVariableHashMap *map)
#if defined(__VISUALC__)
wxChar **env = _tenviron;
#elif defined(__VMS)
// Now this routine wil give false for OpenVMS
// TODO : should we do something with logicals?
char **env;
#elif defined(__WXOSX__)
// Under Mac shared libraries don't have access to the global environ
// variable so use this Mac-specific function instead as advised by