diff options
| author | Baptiste Lepilleur <gaiacrtn@free.fr> | 2001-09-18 18:09:25 +0000 |
|---|---|---|
| committer | Baptiste Lepilleur <gaiacrtn@free.fr> | 2001-09-18 18:09:25 +0000 |
| commit | 91ed0b41be469e1d27efeadb31350844eadcd21b (patch) | |
| tree | d940e25c773621895dd790b18772e2d3e56bd468 /include | |
| parent | efc2b83ddd11864964936d1235327c5813cfed1e (diff) | |
| download | cppunit-91ed0b41be469e1d27efeadb31350844eadcd21b.tar.gz | |
Examples/examples.
examples/examples.dsw:
* examples/msvc6/CppUnitTestApp/CppUnitTestApp.dsw:
* examples/msvc6/HostApp/HostApp.dsw:
* examples/msvc6/TestPlugIn/TestPlugIn.dsw: Added missing
project dependency.
* src/msvc6/DSPlugIn/DSPlugIn.dsp: fixed *.tlb output directory.
* include/msvc6/testrunner/TestPlugInInterface.h: does not define
NOMINMAX if already defined.
Diffstat (limited to 'include')
| -rw-r--r-- | include/msvc6/testrunner/TestPlugInInterface.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/msvc6/testrunner/TestPlugInInterface.h b/include/msvc6/testrunner/TestPlugInInterface.h index 3e0332b..429a322 100644 --- a/include/msvc6/testrunner/TestPlugInInterface.h +++ b/include/msvc6/testrunner/TestPlugInInterface.h @@ -1,7 +1,9 @@ #ifndef CPPUNIT_TESTPLUGINRUNNER_TESTPLUGININTERFACE_H #define CPPUNIT_TESTPLUGINRUNNER_TESTPLUGININTERFACE_H -#define NOMINMAX +#ifndef NOMINMAX +# define NOMINMAX +#endif #include <windef.h> // for WINAPI |
