From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:55542) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QRtbX-00032V-KN for qemu-devel@nongnu.org; Wed, 01 Jun 2011 18:09:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QRtbU-0007f4-UB for qemu-devel@nongnu.org; Wed, 01 Jun 2011 18:09:30 -0400 Received: from mout.perfora.net ([74.208.4.195]:54545) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QRpDk-0000sJ-6j for qemu-devel@nongnu.org; Wed, 01 Jun 2011 13:28:40 -0400 From: Michael Roth Date: Wed, 1 Jun 2011 12:24:36 -0500 Message-Id: <1306949089-15597-9-git-send-email-mdroth@linux.vnet.ibm.com> In-Reply-To: <1306949089-15597-1-git-send-email-mdroth@linux.vnet.ibm.com> References: <1306949089-15597-1-git-send-email-mdroth@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH v1][ 08/21] 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, Jes.Sorensen@redhat.com, agl@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 | 21 +++++++++++++++++++++ 1 files changed, 21 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..de733ab --- /dev/null +++ b/qapi/qapi-types-core.h @@ -0,0 +1,21 @@ +/* + * Core Definitions for QAPI-generated Types + * + * Copyright IBM, Corp. 2011 + * + * Authors: + * Anthony Liguori + * + * This work is licensed under the terms of the GNU LGPL, version 2.1 or later. + * See the COPYING.LIB file in the top-level directory. + * + */ + +#ifndef QAPI_TYPES_CORE_H +#define QAPI_TYPES_CORE_H + +#include +#include +#include "error.h" + +#endif -- 1.7.0.4