error: drop unused functions
[qemu/ar7.git] / error_int.h
blob4b00d0836e958b5d83fca7288cfeaa315f1eff66
1 /*
2 * QEMU Error Objects
4 * Copyright IBM, Corp. 2011
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
9 * This work is licensed under the terms of the GNU LGPL, version 2. See
10 * the COPYING.LIB file in the top-level directory.
12 #ifndef QEMU_ERROR_INT_H
13 #define QEMU_ERROR_INT_H
15 #include "qemu-common.h"
16 #include "qobject.h"
17 #include "qdict.h"
18 #include "error.h"
20 /**
21 * Internal QEMU functions for working with Error.
23 * These are used to convert QErrors to Errors
25 QObject *error_get_qobject(Error *err);
26 void error_set_qobject(Error **errp, QObject *obj);
28 #endif