summaryrefslogtreecommitdiff
path: root/body/c_fl_pnm_image.h
diff options
context:
space:
mode:
Diffstat (limited to 'body/c_fl_pnm_image.h')
-rw-r--r--body/c_fl_pnm_image.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/body/c_fl_pnm_image.h b/body/c_fl_pnm_image.h
new file mode 100644
index 0000000..6feeff9
--- /dev/null
+++ b/body/c_fl_pnm_image.h
@@ -0,0 +1,20 @@
+
+
+// Programmed by Jedidiah Barber
+// Released into the public domain
+
+
+#ifndef FL_PNM_IMAGE_GUARD
+#define FL_PNM_IMAGE_GUARD
+
+
+typedef void* PNMIMAGE;
+
+
+extern "C" PNMIMAGE new_fl_pnm_image(const char * f);
+extern "C" void free_fl_pnm_image(PNMIMAGE p);
+
+
+#endif
+
+