Correct headers for Windows compilation.

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@2881 0c269be4-1314-0410-8aa9-9f06e86f4224
This commit is contained in:
sletz 2008-09-05 13:53:20 +00:00 committed by Filipe Coelho
parent f5aec8a5f5
commit bf75279198
1 changed files with 3 additions and 5 deletions

View File

@ -26,11 +26,11 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#ifdef __MINGW32__
#include <stdint.h>
#include <sys/types.h>
#include <sys/types.h>
#else
#define __inline__ inline
#define vsnprintf _vsnprintf
#define snprintf _snprintf
#define snprintf _snprintf
typedef char int8_t;
typedef unsigned char uint8_t;
@ -40,11 +40,10 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
typedef unsigned long uint32_t;
typedef LONGLONG int64_t;
typedef ULONGLONG uint64_t;
#endif
typedef HANDLE pthread_t;
typedef int64_t _jack_time_t;
typedef int64_t _jack_time_t;
#endif // WIN32 */
@ -58,5 +57,4 @@ typedef uint64_t _jack_time_t;
#endif // __APPLE__ || __linux__ */
#endif