aboutsummaryrefslogtreecommitdiff
path: root/src/bitmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/bitmap.h')
-rw-r--r--src/bitmap.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/bitmap.h b/src/bitmap.h
new file mode 100644
index 0000000..0f08959
--- /dev/null
+++ b/src/bitmap.h
@@ -0,0 +1,13 @@
+#ifndef IMV_BITMAP_H
+#define IMV_BITMAP_H
+
+struct imv_bitmap {
+ int width;
+ int height;
+ unsigned char *data;
+};
+
+struct imv_bitmap *imv_bitmap_clone(struct imv_bitmap *bmp);
+void imv_bitmap_free(struct imv_bitmap *bmp);
+
+#endif