]> git.sur5r.net Git - i3/i3lock/commitdiff
Move static byte arrays to xcb.c (fixes compilation warnings)
authorMichael Stapelberg <michael@stapelberg.de>
Tue, 20 Jul 2010 21:06:54 +0000 (23:06 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Tue, 20 Jul 2010 21:06:54 +0000 (23:06 +0200)
cursors.h
xcb.c

index 23fd30f41021dccec64935614605b9aedc88cb08..45a6ff2a407d21342ae71043e8286ad13a2e0d56 100644 (file)
--- a/cursors.h
+++ b/cursors.h
@@ -1,27 +1,8 @@
+#ifndef _CURSORS_H
+#define _CURSORS_H
+
 #define CURS_NONE    0
 #define CURS_WIN     1
 #define CURS_DEFAULT 2
 
-#define curs_invisible_width 8
-#define curs_invisible_height 8
-
-static unsigned char curs_invisible_bits[] = {
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
-
-#define curs_windows_width 11
-#define curs_windows_height 19
-
-static unsigned char curs_windows_bits[] = {
- 0xfe, 0x07, 0xfc, 0x07, 0xfa, 0x07, 0xf6, 0x07, 0xee, 0x07, 0xde, 0x07,
- 0xbe, 0x07, 0x7e, 0x07, 0xfe, 0x06, 0xfe, 0x05, 0x3e, 0x00, 0xb6, 0x07,
- 0x6a, 0x07, 0x6c, 0x07, 0xde, 0x06, 0xdf, 0x06, 0xbf, 0x05, 0xbf, 0x05,
- 0x7f, 0x06 };
-
-#define mask_windows_width 11
-#define mask_windows_height 19
-
-static unsigned char mask_windows_bits[] = {
- 0x01, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0f, 0x00, 0x1f, 0x00, 0x3f, 0x00,
- 0x7f, 0x00, 0xff, 0x00, 0xff, 0x01, 0xff, 0x03, 0xff, 0x07, 0x7f, 0x00,
- 0xf7, 0x00, 0xf3, 0x00, 0xe1, 0x01, 0xe0, 0x01, 0xc0, 0x03, 0xc0, 0x03,
- 0x80, 0x01 };
+#endif
diff --git a/xcb.c b/xcb.c
index 70f1374008a5529d9ca4f4a7014c12f6d0bf6931..bf9f9948c134e5c4468189b18e64c77f27d3b9a7 100644 (file)
--- a/xcb.c
+++ b/xcb.c
 
 #include "cursors.h"
 
+#define curs_invisible_width 8
+#define curs_invisible_height 8
+
+static unsigned char curs_invisible_bits[] = {
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
+
+#define curs_windows_width 11
+#define curs_windows_height 19
+
+static unsigned char curs_windows_bits[] = {
+ 0xfe, 0x07, 0xfc, 0x07, 0xfa, 0x07, 0xf6, 0x07, 0xee, 0x07, 0xde, 0x07,
+ 0xbe, 0x07, 0x7e, 0x07, 0xfe, 0x06, 0xfe, 0x05, 0x3e, 0x00, 0xb6, 0x07,
+ 0x6a, 0x07, 0x6c, 0x07, 0xde, 0x06, 0xdf, 0x06, 0xbf, 0x05, 0xbf, 0x05,
+ 0x7f, 0x06 };
+
+#define mask_windows_width 11
+#define mask_windows_height 19
+
+static unsigned char mask_windows_bits[] = {
+ 0x01, 0x00, 0x03, 0x00, 0x07, 0x00, 0x0f, 0x00, 0x1f, 0x00, 0x3f, 0x00,
+ 0x7f, 0x00, 0xff, 0x00, 0xff, 0x01, 0xff, 0x03, 0xff, 0x07, 0x7f, 0x00,
+ 0xf7, 0x00, 0xf3, 0x00, 0xe1, 0x01, 0xe0, 0x01, 0xc0, 0x03, 0xc0, 0x03,
+ 0x80, 0x01 };
+
 static uint32_t get_colorpixel(char *hex) {
     char strgroups[3][3] = {{hex[0], hex[1], '\0'},
                             {hex[2], hex[3], '\0'},