Files
xemu/stubs/ramfb.c
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
301 B
C
Raw Normal View History

2018-10-15 10:52:09 -06:00
#include "qemu/osdep.h"
#include "qapi/error.h"
#include "hw/display/ramfb.h"
2023-10-09 10:32:47 +04:00
const VMStateDescription ramfb_vmstate = {};
2018-10-15 10:52:09 -06:00
void ramfb_display_update(QemuConsole *con, RAMFBState *s)
{
}
RAMFBState *ramfb_setup(Error **errp)
2018-10-15 10:52:09 -06:00
{
error_setg(errp, "ramfb support not available");
return NULL;
}