diff options
Diffstat (limited to 'include/hw/display/ramfb.h')
-rw-r--r-- | include/hw/display/ramfb.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/hw/display/ramfb.h b/include/hw/display/ramfb.h new file mode 100644 index 000000000..b33a2c467 --- /dev/null +++ b/include/hw/display/ramfb.h @@ -0,0 +1,12 @@ +#ifndef RAMFB_H +#define RAMFB_H + +/* ramfb.c */ +typedef struct RAMFBState RAMFBState; +void ramfb_display_update(QemuConsole *con, RAMFBState *s); +RAMFBState *ramfb_setup(Error **errp); + +/* ramfb-standalone.c */ +#define TYPE_RAMFB_DEVICE "ramfb" + +#endif /* RAMFB_H */ |