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.h14
1 files changed, 10 insertions, 4 deletions
diff --git a/apps/recorder/bmp.h b/apps/recorder/bmp.h
index 5414ad893a..3bd8da74b7 100644
--- a/apps/recorder/bmp.h
+++ b/apps/recorder/bmp.h
@@ -16,6 +16,12 @@
16 * KIND, either express or implied. 16 * KIND, either express or implied.
17 * 17 *
18 ****************************************************************************/ 18 ****************************************************************************/
19#ifndef _BMP_H_
20#define _BMP_H_
21
22#include "config.h"
23#include "lcd.h"
24
19/********************************************************************* 25/*********************************************************************
20 * read_bmp_file() 26 * read_bmp_file()
21 * 27 *
@@ -24,7 +30,7 @@
24 * 30 *
25 **********************************************/ 31 **********************************************/
26int read_bmp_file(char* filename, 32int read_bmp_file(char* filename,
27 int *get_width, /* in pixels */ 33 struct bitmap *bm,
28 int *get_height, /* in pixels */ 34 int maxsize,
29 char *bitmap, 35 int format);
30 int maxsize);/* Maximum amount of bytes to write to bitmap */ 36#endif