summaryrefslogtreecommitdiffstats
path: root/abs/mv-core/ghosd/ghosd-0.0.1/examples/example-shared.h
diff options
context:
space:
mode:
Diffstat (limited to 'abs/mv-core/ghosd/ghosd-0.0.1/examples/example-shared.h')
-rw-r--r--abs/mv-core/ghosd/ghosd-0.0.1/examples/example-shared.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/abs/mv-core/ghosd/ghosd-0.0.1/examples/example-shared.h b/abs/mv-core/ghosd/ghosd-0.0.1/examples/example-shared.h
new file mode 100644
index 0000000..63ecea1
--- /dev/null
+++ b/abs/mv-core/ghosd/ghosd-0.0.1/examples/example-shared.h
@@ -0,0 +1,16 @@
+/* ghosd -- OSD with fake transparency, cairo, and pango.
+ * Copyright (C) 2006 Evan Martin <martine@danga.com>
+ */
+
+#include <glib.h>
+#include <cairo/cairo.h>
+
+typedef struct {
+ gboolean transparent;
+ int x, y;
+} ExampleOptions;
+extern ExampleOptions opts;
+
+gboolean example_options_parse(int *argc, char ***argv, ...);
+void example_round_rect(cairo_t *cr, int x, int y, int w, int h, int r);
+