From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:35854) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QMV2E-0007Je-Bu for qemu-devel@nongnu.org; Tue, 17 May 2011 20:54:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QMV2D-0005RT-9t for qemu-devel@nongnu.org; Tue, 17 May 2011 20:54:46 -0400 Received: from mout.perfora.net ([74.208.4.195]:50526) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QMV2D-0005RG-5p for qemu-devel@nongnu.org; Tue, 17 May 2011 20:54:45 -0400 From: Michael Roth Date: Tue, 17 May 2011 19:51:58 -0500 Message-Id: <1305679930-4215-12-git-send-email-mdroth@linux.vnet.ibm.com> In-Reply-To: <1305679930-4215-1-git-send-email-mdroth@linux.vnet.ibm.com> References: <1305679930-4215-1-git-send-email-mdroth@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH v1][ 11/23] qapi: add qapi-types-core.h List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: aliguori@linux.vnet.ibm.com, mdroth@linux.vnet.ibm.com, lcapitulino@redhat.com Base declarations and includes for qapi types generator. Signed-off-by: Michael Roth --- qapi/qapi-types-core.h | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) create mode 100644 qapi/qapi-types-core.h diff --git a/qapi/qapi-types-core.h b/qapi/qapi-types-core.h new file mode 100644 index 0000000..506a8c9 --- /dev/null +++ b/qapi/qapi-types-core.h @@ -0,0 +1,12 @@ +#ifndef QAPI_TYPES_CORE_H +#define QAPI_TYPES_CORE_H + +#include +#include +#include "error.h" + +typedef struct QmpSignal QmpSignal; +typedef struct QmpCommandState QmpCommandState; +typedef struct QmpState QmpState; + +#endif -- 1.7.0.4