rulimine/stage2/lib/bmp.h
mintsuki 5ee53fbe4d Initial work on bitmap and background support. Add a public domain picture.
Co-authored-by: ethan <55000224+ethan4984@users.noreply.github.com>
2020-09-21 17:43:37 +02:00

11 lines
187 B
C

#ifndef __LIB__BMP_H__
#define __LIB__BMP_H__
#include <stdint.h>
#include <fs/file.h>
#include <lib/image.h>
int bmp_open_image(struct image *image, struct file_handle *file);
#endif