Minor fixes for Win32 build. It now builds, but doesn't link.

This commit is contained in:
Jack Moffitt
2005-06-14 22:35:15 +00:00
parent d07094c090
commit e6fa890d3d
8 changed files with 49 additions and 8 deletions

22
src/ostypes.h Normal file
View File

@@ -0,0 +1,22 @@
/* ostypes.h
** XMPP client library -- type definitions for platforms without stdint.h
**
** Copyright (C) 2005 OGG, LCC. All rights reserved.
**
** This software is provided AS-IS with no warranty, either express
** or implied.
**
** This software is distributed under license and may not be copied,
** modified or distributed except as expressly authorized under the
** terms of the license contained in the file LICENSE.txt in this
** distribution.
*/
#ifndef __LIBSTROPHE_OSTYPES_H__
#define __LIBSTROPHE_OSTYPES_H__
#ifdef _WIN32
typedef unsigned __int64 uint64_t;
#endif
#endif /* __LIBSTROPHE_OSTYPES_H__ */