diff options
author | Kevin Wolf <kwolf@redhat.com> | 2013-03-15 10:35:03 +0100 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2013-03-15 16:07:49 +0100 |
commit | b382bc9a1504c7f7c112881695d08293b906b88f (patch) | |
tree | a4adae01f8d281b8989e7b62e166231370244586 /include | |
parent | de9c0cec6c823071b903ebeebf1ee70b394ff46f (diff) | |
download | qemu-b382bc9a1504c7f7c112881695d08293b906b88f.zip qemu-b382bc9a1504c7f7c112881695d08293b906b88f.tar.gz qemu-b382bc9a1504c7f7c112881695d08293b906b88f.tar.bz2 |
Add qdict_clone_shallow()
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/qapi/qmp/qdict.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/qapi/qmp/qdict.h b/include/qapi/qmp/qdict.h index 6d9a4be..685b2e3 100644 --- a/include/qapi/qmp/qdict.h +++ b/include/qapi/qmp/qdict.h @@ -64,4 +64,6 @@ int64_t qdict_get_try_int(const QDict *qdict, const char *key, int qdict_get_try_bool(const QDict *qdict, const char *key, int def_value); const char *qdict_get_try_str(const QDict *qdict, const char *key); +QDict *qdict_clone_shallow(const QDict *src); + #endif /* QDICT_H */ |