summaryrefslogtreecommitdiffstats
path: root/common/quic_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/quic_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/quic_config.h')
-rw-r--r--common/quic_config.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/common/quic_config.h b/common/quic_config.h
index ab418b13..c9eb8fa2 100644
--- a/common/quic_config.h
+++ b/common/quic_config.h
@@ -18,9 +18,10 @@
#ifndef __QUIC_CONFIG_H
#define __QUIC_CONFIG_H
+#include <spice/types.h>
+
#ifdef __GNUC__
-#include <stdint.h>
#include <string.h>
#define INLINE inline
@@ -36,16 +37,12 @@
#define MEMCLEAR(ptr, size) RtlZeroMemory(ptr, size)
#else
#include <stddef.h>
-#include <basetsd.h>
#include <string.h>
#define INLINE inline
#define MEMCLEAR(ptr, size) memset(ptr, 0, size)
#endif
-typedef UINT32 uint32_t;
-typedef UINT16 uint16_t;
-typedef UINT8 uint8_t;
#endif