xref: /openbmc/qemu/include/hw/display/ramfb.h (revision 85978dfb6b1c1334ed6aa998ca06c3f45e2127e0)
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(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 */
17