X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/633292e9fe7ed20010eec59eeff2330f5cf69034..0a9d0188bd22fed7eb3606d307e9dfd10c3357cf:/include/fb.h diff --git a/include/fb.h b/include/fb.h index 9ade9e7..19dae0b 100644 --- a/include/fb.h +++ b/include/fb.h @@ -1,6 +1,8 @@ #ifndef __FB_H #define __FB_H +#include + struct fbdevice; struct vmode; @@ -9,6 +11,7 @@ typedef enum { } 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; @@ -20,6 +23,7 @@ struct fbdevice { unsigned char *fbaddr; void *priv; getvmode_t getvmode; + checksum_rect_t checksum_rect; struct vmode curmode; };