/usr/include/minidjvu/image-io/bmp.h is in libminidjvu-dev 0.8.svn.2010.05.06+dfsg-5build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | /*
* bmp.h - saving bitmaps in Windows BMP format
*/
/*
* 1 - success, 0 - failure
*/
MDJVU_FUNCTION int mdjvu_save_bmp(mdjvu_bitmap_t, const char *path, int32 resolution, mdjvu_error_t *);
MDJVU_FUNCTION int mdjvu_file_save_bmp(mdjvu_bitmap_t, mdjvu_file_t, int32 resolution, mdjvu_error_t *);
/*
* These functions return NULL if failed
*/
MDJVU_FUNCTION mdjvu_bitmap_t mdjvu_load_bmp(const char *path, mdjvu_error_t *);
MDJVU_FUNCTION mdjvu_bitmap_t mdjvu_file_load_bmp(mdjvu_file_t, mdjvu_error_t *);
|