diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2010-06-15 11:11:10 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2010-06-15 11:11:10 (GMT) |
commit | 0c6ee149829948582e5e5c1b96c8b3105b02672a (patch) | |
tree | b47b3252c432a415bf772add061e451f5782d6c7 /src/portable.h | |
parent | a1528245b280f1068daad8cd850ea345a3f8b568 (diff) | |
download | Doxygen-0c6ee149829948582e5e5c1b96c8b3105b02672a.zip Doxygen-0c6ee149829948582e5e5c1b96c8b3105b02672a.tar.gz Doxygen-0c6ee149829948582e5e5c1b96c8b3105b02672a.tar.bz2 |
Release-1.7.0
Diffstat (limited to 'src/portable.h')
-rw-r--r-- | src/portable.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/portable.h b/src/portable.h index cbd8df0..f698e32 100644 --- a/src/portable.h +++ b/src/portable.h @@ -3,6 +3,7 @@ #include <sys/types.h> #include <stdio.h> +#include <qglobal.h> #if defined(_WIN32) typedef __int64 portable_off_t; @@ -21,6 +22,7 @@ void portable_setenv(const char *variable,const char *value); void portable_unsetenv(const char *variable); portable_off_t portable_fseek(FILE *f,portable_off_t offset, int whence); portable_off_t portable_ftell(FILE *f); +FILE * portable_fopen(const char *fileName,const char *mode); char portable_pathSeparator(); char portable_pathListSeparator(); const char * portable_ghostScriptCommand(); |