diff options
author | Pixel <pixel@nobis-crew.org> | 2009-10-20 01:07:52 +0200 |
---|---|---|
committer | Pixel <pixel@nobis-crew.org> | 2009-10-20 01:07:52 +0200 |
commit | 213a25a18eae1bf57b93618b1b7bbd2fc36fde59 (patch) | |
tree | 2d065c171c14907866288eda6f594600e0ecc059 | |
parent | 583eda7d3132216ec5cfb5f9dcabd845109cdc26 (diff) |
Supporting win32's getenv/setenv.
-rw-r--r-- | lib/BLua.cc | 30 |
1 files changed, 26 insertions, 4 deletions
diff --git a/lib/BLua.cc b/lib/BLua.cc index 76cd443..5ff970e 100644 --- a/lib/BLua.cc +++ b/lib/BLua.cc @@ -339,8 +339,22 @@ int LuaStatics::getenv(lua_State * _L) { if (n != 1) { L->error("Incorrect arguments to function `getenv'"); } - - L->push(::getenv(L->tostring(1).to_charp())); + +#ifdef _WIN32 + char buffer[BUFSIZ + 1]; + if (GetEnvironmentVariable(L->tostring(1).to_charp(), buffer, BUFSIZ)) { + L->push(buffer); + } else { + L->push(); + } +#else + char * var = ::getenv(L->tostring(1).to_charp()); + if (var) { + L->push(var); + } else { + L->push(); + } +#endif return 1; } @@ -352,8 +366,12 @@ int LuaStatics::setenv(lua_State * _L) { if (n != 2) { L->error("Incorrect arguments to function `setenv'"); } - + +#ifdef _WIN32 + SetEnvironmentVariable(L->tostring(1).to_charp(), L->tostring(2).to_charp()); +#else ::setenv(L->tostring(1).to_charp(), L->tostring(2).to_charp(), 1); +#endif return 0; } @@ -365,8 +383,12 @@ int LuaStatics::unsetenv(lua_State * _L) { if (n != 1) { L->error("Incorrect arguments to function `unsetenv'"); } - + +#ifdef _WIN32 + SetEnvironmentVariable(L->tostring(1).to_charp(), NULL); +#else ::unsetenv(L->tostring(1).to_charp()); +#endif return 0; } |