summaryrefslogtreecommitdiffstats
path: root/common/lz_config.h
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2010-02-04 18:46:22 +0100
committerAlexander Larsson <alexl@redhat.com>2010-02-04 18:49:05 +0100
commit39be5a8b13ae793aacf641ef605a4cef8eabf373 (patch)
tree0a97d69e844486bcb29ef958033c8e4f66c06207 /common/lz_config.h
parent90104b39aec42210bf823a1a5f23e1822f32c038 (diff)
downloadspice-39be5a8b13ae793aacf641ef605a4cef8eabf373.tar.gz
spice-39be5a8b13ae793aacf641ef605a4cef8eabf373.tar.xz
spice-39be5a8b13ae793aacf641ef605a4cef8eabf373.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 1020e7ba..748d79df 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