summaryrefslogtreecommitdiffstats
path: root/common/lz_config.h
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2010-02-04 18:46:22 +0100
committerMarc-André Lureau <marcandre.lureau@gmail.com>2012-03-20 15:25:37 +0100
commit5ead2f51a20c2cd141867f21d702a8473b77570b (patch)
treec1d15fcfaf57ae85a97fbd0c7eab8655ad23c924 /common/lz_config.h
parent87d0104241bc16840a51b448ef1f0c7b679b8671 (diff)
downloadspice-common-5ead2f51a20c2cd141867f21d702a8473b77570b.tar.gz
spice-common-5ead2f51a20c2cd141867f21d702a8473b77570b.tar.xz
spice-common-5ead2f51a20c2cd141867f21d702a8473b77570b.zip
Use standard int types and <spice/types.h>
Diffstat (limited to 'common/lz_config.h')
-rw-r--r--common/lz_config.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/common/lz_config.h b/common/lz_config.h
index 1020e7b..748d79d 100644
--- a/common/lz_config.h
+++ b/common/lz_config.h
@@ -20,6 +20,8 @@
#ifndef __LZ_CONFIG_H
#define __LZ_CONFIG_H
+#include <spice/types.h>
+
#ifndef FALSE
#define FALSE 0
#endif
@@ -31,7 +33,6 @@
#ifdef __GNUC__
-#include <stdint.h>
#include <string.h>
#define INLINE inline
@@ -45,15 +46,10 @@
#else
#include <stddef.h>
-#include <basetsd.h>
#include <string.h>
#define INLINE inline
#endif // QXLDD
-typedef UINT32 uint32_t;
-typedef UINT16 uint16_t;
-typedef UINT8 uint8_t;
-
#endif //__GNUC__
#endif //__LZ_CONFIG_H