#ifndef __FB_H
#define __FB_H
+#include <stdint.h>
+
struct fbdevice;
struct vmode;
} format_t;
typedef void (*getvmode_t)(void *);
+typedef uint32_t (*checksum_rect_t)(int x, int y, int width, int height);
struct vmode {
int text:1;
unsigned char *fbaddr;
void *priv;
getvmode_t getvmode;
+ checksum_rect_t checksum_rect;
struct vmode curmode;
};