mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2025-12-31 20:04:09 +00:00
client: fix broken vs2008 build
This commit is contained in:
parent
bfdd2371f8
commit
fe3b3d3937
@ -26,7 +26,11 @@
|
||||
#include <errno.h>
|
||||
#endif
|
||||
|
||||
#include <spice/types.h>
|
||||
#define __STDC_FORMAT_MACROS
|
||||
#ifndef _WIN32
|
||||
#include <inttypes.h>
|
||||
#endif
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
@ -62,6 +66,11 @@
|
||||
#define RED64
|
||||
#endif
|
||||
|
||||
#if defined(_WIN32) && !defined(PRIu64)
|
||||
#define PRIu64 "I64u"
|
||||
#endif
|
||||
|
||||
#include <spice/types.h>
|
||||
#include "red_types.h"
|
||||
|
||||
#endif
|
||||
|
||||
@ -24,6 +24,10 @@
|
||||
#include "debug.h"
|
||||
#include "marshallers.h"
|
||||
|
||||
#ifndef INFINITY
|
||||
#define INFINITY HUGE
|
||||
#endif
|
||||
|
||||
#ifdef __GNUC__
|
||||
typedef struct __attribute__ ((__packed__)) OldRedMigrationBegin {
|
||||
#else
|
||||
|
||||
Loading…
Reference in New Issue
Block a user