X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/5e4258d92892b578b17edc16f432a81616964258..9279fff3ac25895f3fa48cd764bdad56d7c735ff:/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; };