summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
Diffstat (limited to 'client')
-rw-r--r--client/canvas.h2
-rw-r--r--client/client_net_socket.cpp2
-rw-r--r--client/cursor.h2
-rw-r--r--client/glz_decoder.h2
-rw-r--r--client/monitor.h2
-rw-r--r--client/pixels_source.h2
-rw-r--r--client/red_client.h4
-rw-r--r--client/red_peer.cpp2
-rw-r--r--client/red_peer.h2
-rw-r--r--client/red_window.h2
-rw-r--r--client/tunnel_channel.cpp2
-rw-r--r--client/utils.h2
-rw-r--r--client/windows/red_window.cpp2
-rw-r--r--client/x11/red_window.cpp2
14 files changed, 15 insertions, 15 deletions
diff --git a/client/canvas.h b/client/canvas.h
index ed9d0e8a..84a654a8 100644
--- a/client/canvas.h
+++ b/client/canvas.h
@@ -21,7 +21,7 @@
#include "common.h"
#include "debug.h"
#include "cairo.h"
-#include "red.h"
+#include <spice/protocol.h>
#include "cache.hpp"
#include "shared_cache.hpp"
#include "canvas_utils.h"
diff --git a/client/client_net_socket.cpp b/client/client_net_socket.cpp
index 312d6bf8..e7a24896 100644
--- a/client/client_net_socket.cpp
+++ b/client/client_net_socket.cpp
@@ -22,7 +22,7 @@
#include "common.h"
#include "client_net_socket.h"
#include "debug.h"
-#include "red_error_codes.h"
+#include <spice/error_codes.h>
#include "utils.h"
ClientNetSocket::ClientNetSocket(uint16_t id, const struct in_addr& dst_addr, uint16_t dst_port,
diff --git a/client/cursor.h b/client/cursor.h
index cc64c720..5f7ebb25 100644
--- a/client/cursor.h
+++ b/client/cursor.h
@@ -19,7 +19,7 @@
#define _H_CURSOR_
#include "threads.h"
-#include "red.h"
+#include <spice/protocol.h>
#include "red_window_p.h"
class CursorOpaque {
diff --git a/client/glz_decoder.h b/client/glz_decoder.h
index 87cb747c..c2afa54e 100644
--- a/client/glz_decoder.h
+++ b/client/glz_decoder.h
@@ -21,7 +21,7 @@
#include "lz_common.h"
#include "glz_decoder_config.h"
#include "glz_decoder_window.h"
-#include "draw.h"
+#include <spice/draw.h>
diff --git a/client/monitor.h b/client/monitor.h
index 46b0a4e2..6714f74b 100644
--- a/client/monitor.h
+++ b/client/monitor.h
@@ -18,7 +18,7 @@
#ifndef _H_MONITOR
#define _H_MONITOR
-#include "draw.h"
+#include <spice/draw.h>
class Monitor {
public:
diff --git a/client/pixels_source.h b/client/pixels_source.h
index e2fe0604..faa2d4f6 100644
--- a/client/pixels_source.h
+++ b/client/pixels_source.h
@@ -18,7 +18,7 @@
#ifndef _H_PIXELS_SOURCE
#define _H_PIXELS_SOURCE
-#include "draw.h"
+#include <spice/draw.h>
#define PIXELES_SOURCE_OPAQUE_SIZE (20 * sizeof(void*))
diff --git a/client/red_client.h b/client/red_client.h
index 037896ac..e62ed77b 100644
--- a/client/red_client.h
+++ b/client/red_client.h
@@ -27,8 +27,8 @@
#include "inputs_channel.h"
#include "cursor_channel.h"
#include "audio_channels.h"
-#include "red.h"
-#include "vd_agent.h"
+#include <spice/protocol.h>
+#include <spice/vd_agent.h>
#include "process_loop.h"
class Application;
diff --git a/client/red_peer.cpp b/client/red_peer.cpp
index f12be5a6..bdbf1ff1 100644
--- a/client/red_peer.cpp
+++ b/client/red_peer.cpp
@@ -18,7 +18,7 @@
#include "common.h"
#include <openssl/x509.h>
#include <openssl/x509v3.h>
-#include "red.h"
+#include <spice/protocol.h>
#include "red_peer.h"
#include "utils.h"
#include "debug.h"
diff --git a/client/red_peer.h b/client/red_peer.h
index 8b10a5ec..cb5f868d 100644
--- a/client/red_peer.h
+++ b/client/red_peer.h
@@ -22,7 +22,7 @@
#include <openssl/err.h>
#include "common.h"
-#include "red.h"
+#include <spice/protocol.h>
#include "process_loop.h"
#include "threads.h"
#include "platform_utils.h"
diff --git a/client/red_window.h b/client/red_window.h
index 707b9027..27bb4f78 100644
--- a/client/red_window.h
+++ b/client/red_window.h
@@ -19,7 +19,7 @@
#define _H_RED_WINDOW
#include "red_drawable.h"
-#include "red.h"
+#include <spice/protocol.h>
#include "red_key.h"
#include "red_window_p.h"
#include "cursor.h"
diff --git a/client/tunnel_channel.cpp b/client/tunnel_channel.cpp
index dd50933d..383944f6 100644
--- a/client/tunnel_channel.cpp
+++ b/client/tunnel_channel.cpp
@@ -21,7 +21,7 @@
#include "common.h"
#include "tunnel_channel.h"
-#include "red.h"
+#include <spice/protocol.h>
#define SOCKET_WINDOW_SIZE 60
#define SOCKET_TOKENS_TO_SEND 20
diff --git a/client/utils.h b/client/utils.h
index d4163b87..9a29cfbc 100644
--- a/client/utils.h
+++ b/client/utils.h
@@ -19,7 +19,7 @@
#define _H_UTILS
#include "common.h"
-#include "red_error_codes.h"
+#include <spice/error_codes.h>
#define MIN(x, y) (((x) <= (y)) ? (x) : (y))
#define MAX(x, y) (((x) >= (y)) ? (x) : (y))
diff --git a/client/windows/red_window.cpp b/client/windows/red_window.cpp
index a2522d9f..0464e59a 100644
--- a/client/windows/red_window.cpp
+++ b/client/windows/red_window.cpp
@@ -20,7 +20,7 @@
#include "pixels_source_p.h"
#include "utils.h"
#include "debug.h"
-#include "red.h"
+#include <spice/protocol.h>
#include "menu.h"
#include "win_platform.h"
#include "platform_utils.h"
diff --git a/client/x11/red_window.cpp b/client/x11/red_window.cpp
index 14394982..49c5533c 100644
--- a/client/x11/red_window.cpp
+++ b/client/x11/red_window.cpp
@@ -36,7 +36,7 @@
#include "platform.h"
#include "x_platform.h"
#include "pixels_source_p.h"
-#include "red.h"
+#include <spice/protocol.h>
#include "region.h"
#include "red_pixmap_gl.h"
#include "red_pixmap_gl.h"