
3 changed files with 33 additions and 3 deletions
@ -0,0 +1,14 @@ |
|||
--- xutils.c.orig 2022-11-07 09:20:08 UTC |
|||
+++ xutils.c |
|||
@@ -39,6 +39,11 @@ |
|||
* X11 Variables |
|||
*/ |
|||
|
|||
+Display *display; |
|||
+Window Root; |
|||
+Window iconwin, win; |
|||
+int screen; |
|||
+int DisplayDepth; |
|||
int x_fd; |
|||
XSizeHints mysizehints; |
|||
XWMHints mywmhints; |
@ -0,0 +1,19 @@ |
|||
--- xutils.h.orig 2022-11-07 09:20:05 UTC |
|||
+++ xutils.h |
|||
@@ -15,11 +15,11 @@ typedef struct { |
|||
* Global variables |
|||
*/ |
|||
|
|||
-Display *display; |
|||
-Window Root; |
|||
-Window iconwin, win; |
|||
-int screen; |
|||
-int DisplayDepth; |
|||
+extern Display *display; |
|||
+extern Window Root; |
|||
+extern Window iconwin, win; |
|||
+extern int screen; |
|||
+extern int DisplayDepth; |
|||
|
|||
/*
|
|||
* Function Prototypes |
Loading…
Reference in new issue