fix windows build.

git-svn-id: http://svn.openzap.org/svn/openzap/trunk@211 a93c3328-9c30-0410-af19-c9cd2b2d52af
This commit is contained in:
Michael Jerris
2007-06-05 02:48:50 +00:00
parent 7fd17121c8
commit 5fb33efc0b
2 changed files with 7 additions and 2 deletions

View File

@@ -40,7 +40,12 @@
typedef HANDLE zap_socket_t;
typedef unsigned __int64 uint64_t;
typedef unsigned __int32 uint32_t;
typedef unsigned __int16 uint16_t;
typedef unsigned __int8 uint8_t;
typedef __int64 int64_t;
typedef __int32 int32_t;
typedef __int16 int16_t;
typedef __int8 int8_t;
typedef intptr_t zap_ssize_t;
typedef int zap_filehandle_t;
#else