diff options
Diffstat (limited to 'vdagent')
-rw-r--r-- | vdagent/file_xfer.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/vdagent/file_xfer.cpp b/vdagent/file_xfer.cpp index f8cd07f..3aad4ac 100644 --- a/vdagent/file_xfer.cpp +++ b/vdagent/file_xfer.cpp @@ -18,7 +18,14 @@ #include <shlobj.h> #define __STDC_FORMAT_MACROS #define __USE_MINGW_ANSI_STDIO 1 + +// compiler specific definitions +#ifdef _MSC_VER // compiling with Visual Studio +#define PRIu64 "I64u" +#else // compiling with mingw #include <inttypes.h> +#endif // compiler specific definitions + #include <stdio.h> #include "file_xfer.h" #include "as_user.h" |