| 1 | #ifndef RAMFB_H |
| 2 | #define RAMFB_H |
| 3 | |
| 4 | #include "migration/vmstate.h" |
| 5 | |
| 6 | /* ramfb.c */ |
| 7 | typedef struct RAMFBState RAMFBState; |
| 8 | void ramfb_display_update(QemuConsole *con, RAMFBState *s); |
| 9 | RAMFBState *ramfb_setup(bool romfile, Error **errp); |
| 10 | |
| 11 | extern const VMStateDescription ramfb_vmstate; |
| 12 | |
| 13 | /* ramfb-standalone.c */ |
| 14 | #define TYPE_RAMFB_DEVICE "ramfb" |
| 15 | |
| 16 | #endif /* RAMFB_H */ |