summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2010-09-28 17:44:12 +0200
committerGerd Hoffmann <kraxel@redhat.com>2010-09-28 17:47:16 +0200
commit23ddd39530d52884389e7ba9599421ff81f4b355 (patch)
treedfe4a0f75f127f44d74098a7756b5102960b5f9d
parent363cd0e8fe9034f7cb22c812c621119d4dd5104d (diff)
include fixupgtk.v1
-rw-r--r--gtk/Makefile.am3
-rw-r--r--gtk/spice-common.h17
2 files changed, 20 insertions, 0 deletions
diff --git a/gtk/Makefile.am b/gtk/Makefile.am
index 96352e2..cc8cb75 100644
--- a/gtk/Makefile.am
+++ b/gtk/Makefile.am
@@ -100,6 +100,9 @@ libspice_client_glib_la_LIBADD = \
$(NULL)
libspice_client_glib_la_SOURCES = \
+ spice-client.h \
+ spice-common.h \
+ \
spice-events.c \
spice-events.h \
spice-session.c \
diff --git a/gtk/spice-common.h b/gtk/spice-common.h
new file mode 100644
index 0000000..84cdb8a
--- /dev/null
+++ b/gtk/spice-common.h
@@ -0,0 +1,17 @@
+/* system */
+#include <stdio.h>
+#include <stdlib.h>
+#include <stdbool.h>
+#include <string.h>
+#include <unistd.h>
+#include <errno.h>
+#include <inttypes.h>
+#include <assert.h>
+
+/* spice/common */
+#include "mem.h"
+#include "messages.h"
+#include "marshaller.h"
+
+/* spice/gtk */
+#include "spice-events.h"