mirror of
https://github.com/qemu/qemu.git
synced 2024-12-15 07:23:52 +08:00
a2974439ad
We are going to split this file and reuse these static functions. Add the local "qdev-prop-internal.h" header declaring them. Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20200930164949.1425294-6-philmd@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
20 lines
632 B
C
20 lines
632 B
C
/*
|
|
* qdev property parsing
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
* See the COPYING file in the top-level directory.
|
|
*/
|
|
|
|
#ifndef HW_CORE_QDEV_PROP_INTERNAL_H
|
|
#define HW_CORE_QDEV_PROP_INTERNAL_H
|
|
|
|
void qdev_propinfo_get_enum(Object *obj, Visitor *v, const char *name,
|
|
void *opaque, Error **errp);
|
|
void qdev_propinfo_set_enum(Object *obj, Visitor *v, const char *name,
|
|
void *opaque, Error **errp);
|
|
|
|
void qdev_propinfo_set_default_value_enum(ObjectProperty *op,
|
|
const Property *prop);
|
|
|
|
#endif
|