summaryrefslogtreecommitdiff
path: root/src/c_fl_jpeg_image.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/c_fl_jpeg_image.cpp')
-rw-r--r--src/c_fl_jpeg_image.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/c_fl_jpeg_image.cpp b/src/c_fl_jpeg_image.cpp
index 763c55f..93ab22d 100644
--- a/src/c_fl_jpeg_image.cpp
+++ b/src/c_fl_jpeg_image.cpp
@@ -4,12 +4,13 @@
#include "c_fl_jpeg_image.h"
+
+
JPEG_IMAGE new_fl_jpeg_image(const char * f) {
Fl_JPEG_Image *j = new Fl_JPEG_Image(f);
return j;
}
-
void free_fl_jpeg_image(JPEG_IMAGE j) {
delete reinterpret_cast<Fl_JPEG_Image*>(j);
}