ppc/pnv: turn 'phb' into a pointer in struct PnvPhb4PecStack
[qemu.git] / include / block / qdict.h
blobced2acfb92a080d9fc4ad52517fa353b1c996d50
1 /*
2 * Special QDict functions used by the block layer
4 * Copyright (c) 2013-2018 Red Hat, Inc.
6 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
7 * See the COPYING.LIB file in the top-level directory.
8 */
10 #ifndef BLOCK_QDICT_H
11 #define BLOCK_QDICT_H
13 #include "qapi/qmp/qdict.h"
15 void qdict_copy_default(QDict *dst, QDict *src, const char *key);
16 void qdict_set_default_str(QDict *dst, const char *key, const char *val);
18 void qdict_join(QDict *dest, QDict *src, bool overwrite);
20 void qdict_extract_subqdict(QDict *src, QDict **dst, const char *start);
21 void qdict_array_split(QDict *src, QList **dst);
22 int qdict_array_entries(QDict *src, const char *subqdict);
24 typedef struct QDictRenames {
25 const char *from;
26 const char *to;
27 } QDictRenames;
28 bool qdict_rename_keys(QDict *qdict, const QDictRenames *renames, Error **errp);
30 Visitor *qobject_input_visitor_new_flat_confused(QDict *qdict,
31 Error **errp);
32 #endif