summaryrefslogtreecommitdiff
path: root/apps/recorder/bmp.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/recorder/bmp.h')
-rw-r--r--apps/recorder/bmp.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/apps/recorder/bmp.h b/apps/recorder/bmp.h
index 273e178bc9..c53f295dfb 100644
--- a/apps/recorder/bmp.h
+++ b/apps/recorder/bmp.h
@@ -24,6 +24,7 @@
24#include "config.h" 24#include "config.h"
25#include "lcd.h" 25#include "lcd.h"
26#include "inttypes.h" 26#include "inttypes.h"
27#include "resize.h"
27#ifdef HAVE_REMOTE_LCD 28#ifdef HAVE_REMOTE_LCD
28#include "lcd-remote.h" 29#include "lcd-remote.h"
29#endif 30#endif
@@ -202,10 +203,12 @@ extern const unsigned short vi_pattern[4];
202int read_bmp_file(const char* filename, 203int read_bmp_file(const char* filename,
203 struct bitmap *bm, 204 struct bitmap *bm,
204 int maxsize, 205 int maxsize,
205 int format); 206 int format,
207 const struct custom_format *cformat);
206 208
207int read_bmp_fd(int fd, 209int read_bmp_fd(int fd,
208 struct bitmap *bm, 210 struct bitmap *bm,
209 int maxsize, 211 int maxsize,
210 int format); 212 int format,
213 const struct custom_format *cformat);
211#endif 214#endif