summaryrefslogtreecommitdiff
path: root/apps/misc.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/misc.h')
-rw-r--r--apps/misc.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/apps/misc.h b/apps/misc.h
index e2e856f212..df2c649b0e 100644
--- a/apps/misc.h
+++ b/apps/misc.h
@@ -222,4 +222,15 @@ enum current_activity get_current_activity(void);
222/* format a sound value like: -1.05 dB */ 222/* format a sound value like: -1.05 dB */
223int format_sound_value(char *buf, size_t len, int snd, int val); 223int format_sound_value(char *buf, size_t len, int snd, int val);
224 224
225#ifndef PLUGIN
226enum core_load_bmp_error
227{
228 CLB_ALOC_ERR = 0,
229 CLB_READ_ERR = -1,
230};
231struct buflib_callbacks;
232int core_load_bmp(const char *filename, struct bitmap *bm, const int bmformat,
233 ssize_t *buf_reqd, struct buflib_callbacks *ops);
234#endif
235
225#endif /* MISC_H */ 236#endif /* MISC_H */