Added needed defines missing in the windows environment that were keeping the components from building cleanly.

This commit is contained in:
Juan Carlos Luciani 2007-02-06 23:36:07 +00:00
parent 1323841a3a
commit 5deee61fea
3 changed files with 6 additions and 0 deletions

View File

@ -64,6 +64,8 @@ char printBuff[256]; \
} \
}
#define INT32_MAX (2147483647)
#define UINT32_MAX (4294967295U)
#define bool BOOLEAN
#define true TRUE
#define false FALSE

View File

@ -62,6 +62,8 @@ char printBuff[256]; \
} \
}
#define INT32_MAX (2147483647)
#define UINT32_MAX (4294967295U)
#define bool BOOLEAN
#define true TRUE
#define false FALSE

View File

@ -79,6 +79,8 @@ typedef struct _RpcSession
//
// Other definitions
//
#define INT32_MAX (2147483647)
#define UINT32_MAX (4294967295U)
#define LIB_HANDLE HMODULE
#define bool BOOLEAN
#define true TRUE