diff options
author | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2011-12-08 21:59:13 +0000 |
---|---|---|
committer | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2011-12-08 21:59:13 +0000 |
commit | 5ffd2f759847cf52ff728605ac964e80cee70bff (patch) | |
tree | 3300b74e98375b50324acba01411fcd0322ee125 /rbutil/ipodpatcher | |
parent | d2c1ece304d0a9eb1a29401ee24b889aea1bff8c (diff) | |
download | rockbox-5ffd2f759847cf52ff728605ac964e80cee70bff.tar.gz rockbox-5ffd2f759847cf52ff728605ac964e80cee70bff.zip |
Various adjustments for MSVC.
- MSVC uses different namings in some places. Adjust the sources via the
preprocessor if build with MSVC.
- MSVC doesn't know about __func__, use name instead.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31185 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'rbutil/ipodpatcher')
-rw-r--r-- | rbutil/ipodpatcher/ipodio.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/rbutil/ipodpatcher/ipodio.h b/rbutil/ipodpatcher/ipodio.h index 6aa675535a..e08d74a785 100644 --- a/rbutil/ipodpatcher/ipodio.h +++ b/rbutil/ipodpatcher/ipodio.h @@ -23,9 +23,14 @@ #define __IPODIO_H #include <stdint.h> +#if !defined(_WIN32) #include <unistd.h> +#elif defined(_MSC_VER) +/* MSVC uses a different name for ssize_t */ +#define ssize_t SSIZE_T +#endif -#ifdef __WIN32__ +#if defined(__WIN32__) || defined(_WIN32) #include <windows.h> #else #define HANDLE int |