summaryrefslogtreecommitdiffstats
path: root/abs/mv-core/ghosd/ghosd-0.0.1/ghosd/ghosd-internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'abs/mv-core/ghosd/ghosd-0.0.1/ghosd/ghosd-internal.h')
-rw-r--r--abs/mv-core/ghosd/ghosd-0.0.1/ghosd/ghosd-internal.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/abs/mv-core/ghosd/ghosd-0.0.1/ghosd/ghosd-internal.h b/abs/mv-core/ghosd/ghosd-0.0.1/ghosd/ghosd-internal.h
new file mode 100644
index 0000000..262afe6
--- /dev/null
+++ b/abs/mv-core/ghosd/ghosd-0.0.1/ghosd/ghosd-internal.h
@@ -0,0 +1,21 @@
+/* ghosd -- OSD with fake transparency, cairo, and pango.
+ * Copyright (C) 2006 Evan Martin <martine@danga.com>
+ */
+
+#include <X11/Xlib.h>
+
+#include "ghosd.h"
+
+struct _Ghosd {
+ Display *dpy;
+ Window win;
+ int transparent;
+ int x, y, width, height;
+
+ Pixmap background;
+ Pixmap draw_buffer;
+ GhosdRenderFunc render_func;
+ void *render_data;
+};
+
+/* vim: set ts=2 sw=2 et cino=(0 : */