diff options
-rw-r--r-- | src/dot.cpp | 11 | ||||
-rw-r--r-- | winbuild/Doxygen.vcproj | 8 |
2 files changed, 16 insertions, 3 deletions
diff --git a/src/dot.cpp b/src/dot.cpp index 188b15f..e57557a 100644 --- a/src/dot.cpp +++ b/src/dot.cpp @@ -1,6 +1,6 @@ /***************************************************************************** * - * + * $Id$ * * * Copyright (C) 1997-2006 by Dimitri van Heesch. @@ -16,6 +16,11 @@ * */ +#ifdef _WIN32 +#include <windows.h> +#define BITMAP W_BITMAP +#endif + #include <stdlib.h> #include "dot.h" @@ -2929,7 +2934,7 @@ void writeDotGraphFromFile(const char *inFile,const char *outDir, // temporarily remove the DOTFONTPATH environment variable // so dot will use the built-in search path. #ifdef _WIN32 - SetEnvironmentVariable("DOTFONTPATH", 0) + SetEnvironmentVariable("DOTFONTPATH", 0); #else unsetenv("DOTFONTPATH"); #endif @@ -2966,7 +2971,7 @@ void writeDotGraphFromFile(const char *inFile,const char *outDir, { // restore the DOTFONTPATH variable again #ifdef _WIN32 - SetEnvironmentVariable("DOTFONTPATH", env) + SetEnvironmentVariable("DOTFONTPATH", env); #else setenv("DOTFONTPATH",env,1); #endif diff --git a/winbuild/Doxygen.vcproj b/winbuild/Doxygen.vcproj index 43855ba..4fd1b98 100644 --- a/winbuild/Doxygen.vcproj +++ b/winbuild/Doxygen.vcproj @@ -1634,6 +1634,10 @@ </FileConfiguration> </File> <File + RelativePath="..\src\textdocvisitor.cpp" + > + </File> + <File RelativePath="..\src\translator.cpp" > <FileConfiguration @@ -2077,6 +2081,10 @@ > </File> <File + RelativePath="..\src\textdocvisitor.h" + > + </File> + <File RelativePath="..\src\translator.h" > </File> |