2
0

ramfb-stubs.c 301 B

123456789101112131415
  1. #include "qemu/osdep.h"
  2. #include "qapi/error.h"
  3. #include "hw/display/ramfb.h"
  4. const VMStateDescription ramfb_vmstate = {};
  5. void ramfb_display_update(QemuConsole *con, RAMFBState *s)
  6. {
  7. }
  8. RAMFBState *ramfb_setup(Error **errp)
  9. {
  10. error_setg(errp, "ramfb support not available");
  11. return NULL;
  12. }