Add initial basic support for fullscreen surfaces
diff --git a/compositor/shell.c b/compositor/shell.c
index 2699b22..1ff32e9 100644
--- a/compositor/shell.c
+++ b/compositor/shell.c
@@ -80,6 +80,8 @@
 	struct wlsc_surface *es = (struct wlsc_surface *) surface;
 	struct wlsc_move_grab *move;
 
+	/* FIXME: Reject if fullscreen */
+
 	move = malloc(sizeof *move);
 	if (!move) {
 		wl_client_post_no_memory(client);
@@ -174,6 +176,8 @@
 	enum wlsc_pointer_type pointer = WLSC_POINTER_LEFT_PTR;
 	struct wlsc_surface *es = (struct wlsc_surface *) surface;
 
+	/* FIXME: Reject if fullscreen */
+
 	resize = malloc(sizeof *resize);
 	if (!resize) {
 		wl_client_post_no_memory(client);