QEMU main repository: Please see https://www.qemu.org/docs/master/devel/submitting-a-patch.html for how to submit changes to QEMU. Pull Requests are ignored. Please only use release tarballs from the QEMU website. http://www.qemu.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
593 B
21 lines
593 B
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/*
|
|
* This header file is meant to be used as input to the `bindgen` application
|
|
* in order to generate C FFI compatible Rust bindings.
|
|
*/
|
|
|
|
/*
|
|
* We block include/qemu/typedefs.h from bindgen, add here symbols
|
|
* that are needed as opaque types by other functions.
|
|
*/
|
|
typedef struct DirtyBitmapSnapshot DirtyBitmapSnapshot;
|
|
typedef struct MemoryRegion MemoryRegion;
|
|
typedef struct RAMBlock RAMBlock;
|
|
|
|
#include "qemu/osdep.h"
|
|
|
|
#include "exec/hwaddr.h"
|
|
#include "system/address-spaces.h"
|
|
#include "system/memory.h"
|
|
#include "hw/core/sysbus.h"
|
|
|