diff options
author | Marc Laukien <marc@zeroc.com> | 2002-04-10 11:30:21 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-04-10 11:30:21 +0000 |
commit | 5f17ff737dc7c95bc2ae251c1951faf630872c09 (patch) | |
tree | ae3eac4ba3496d96a1fb2fe2791cbe1b3ba1613d /cpp/src/slice2xsd/Main.cpp | |
parent | removed old file (diff) | |
download | ice-5f17ff737dc7c95bc2ae251c1951faf630872c09.tar.bz2 ice-5f17ff737dc7c95bc2ae251c1951faf630872c09.tar.xz ice-5f17ff737dc7c95bc2ae251c1951faf630872c09.zip |
WIN32->_WIN32
Diffstat (limited to 'cpp/src/slice2xsd/Main.cpp')
-rw-r--r-- | cpp/src/slice2xsd/Main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/slice2xsd/Main.cpp b/cpp/src/slice2xsd/Main.cpp index 43f041d7302..ce97a00c8a7 100644 --- a/cpp/src/slice2xsd/Main.cpp +++ b/cpp/src/slice2xsd/Main.cpp @@ -169,7 +169,7 @@ main(int argc, char* argv[]) test.close(); string cmd = cpp + " " + argv[idx]; -#ifdef WIN32 +#ifdef _WIN32 FILE* cppHandle = _popen(cmd.c_str(), "r"); #else FILE* cppHandle = popen(cmd.c_str(), "r"); @@ -184,7 +184,7 @@ main(int argc, char* argv[]) UnitPtr unit = Unit::createUnit(false, false); int parseStatus = unit->parse(cppHandle, debug); -#ifdef WIN32 +#ifdef _WIN32 _pclose(cppHandle); #else pclose(cppHandle); |