summaryrefslogtreecommitdiff
path: root/boilerplate/cairo-boilerplate-beos-private.h
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2007-04-19 19:38:20 -0400
committerBehdad Esfahbod <behdad@behdad.org>2007-04-20 00:52:01 -0400
commitfb2c0daa09af083278024c3da6f7e9e3f851984f (patch)
treea452fa3f80d87c34d3d90c9c377132378735df55 /boilerplate/cairo-boilerplate-beos-private.h
parent01760286b388870e5bebf3851b4bef1350d89852 (diff)
[boilerplate] Rename test-beos to boilerplate-beos
Diffstat (limited to 'boilerplate/cairo-boilerplate-beos-private.h')
-rw-r--r--boilerplate/cairo-boilerplate-beos-private.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/boilerplate/cairo-boilerplate-beos-private.h b/boilerplate/cairo-boilerplate-beos-private.h
new file mode 100644
index 00000000..b572353b
--- /dev/null
+++ b/boilerplate/cairo-boilerplate-beos-private.h
@@ -0,0 +1,34 @@
+#ifndef _CAIRO_BOILERPLATE_BEOS_PRIVATE_H_
+#define _CAIRO_BOILERPLATE_BEOS_PRIVATE_H_
+
+/* Two functions: One for a real window, one for a bitmap */
+
+#include <cairo.h>
+
+CAIRO_BEGIN_DECLS
+
+extern cairo_surface_t *
+_cairo_boilerplate_beos_create_surface (const char *name,
+ cairo_content_t content,
+ int width,
+ int height,
+ cairo_boilerplate_mode_t mode,
+ void **closure);
+
+extern void
+_cairo_boilerplate_beos_cleanup (void* closure);
+
+extern cairo_surface_t *
+_cairo_boilerplate_beos_create_surface_for_bitmap (const char *name,
+ cairo_content_t content,
+ int width,
+ int height,
+ cairo_boilerplate_mode_t mode,
+ void **closure);
+
+extern void
+_cairo_boilerplate_beos_cleanup_bitmap (void* closure);
+
+CAIRO_END_DECLS
+
+#endif