diff options
-rw-r--r-- | gtk/Makefile.am | 3 | ||||
-rw-r--r-- | gtk/spice-common.h | 17 |
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" |