From patchwork Fri Jun 3 22:33:06 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Roth X-Patchwork-Id: 98681 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 14CE5B6F7B for ; Sat, 4 Jun 2011 09:27:09 +1000 (EST) Received: from localhost ([::1]:33038 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QSdlh-0000wb-6F for incoming@patchwork.ozlabs.org; Fri, 03 Jun 2011 19:27:05 -0400 Received: from eggs.gnu.org ([140.186.70.92]:46518) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QScxI-0005Nh-Sg for qemu-devel@nongnu.org; Fri, 03 Jun 2011 18:35:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QScxH-0001jN-C3 for qemu-devel@nongnu.org; Fri, 03 Jun 2011 18:35:00 -0400 Received: from mout.perfora.net ([74.208.4.195]:50392) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QScxG-0001jF-Tn for qemu-devel@nongnu.org; Fri, 03 Jun 2011 18:34:59 -0400 Received: from localhost.localdomain ([32.97.110.59]) by mrelay.perfora.net (node=mrus1) with ESMTP (Nemesis) id 0LfTuL-1PmgN73mnp-00odrD; Fri, 03 Jun 2011 18:34:56 -0400 From: Michael Roth To: qemu-devel@nongnu.org Date: Fri, 3 Jun 2011 17:33:06 -0500 Message-Id: <1307140399-9023-9-git-send-email-mdroth@linux.vnet.ibm.com> X-Mailer: git-send-email 1.7.0.4 In-Reply-To: <1307140399-9023-1-git-send-email-mdroth@linux.vnet.ibm.com> References: <1307140399-9023-1-git-send-email-mdroth@linux.vnet.ibm.com> X-Provags-ID: V02:K0:MU8lRyeQ70GUb6VzYW0mfug4JJlwcpAmIlZZZDaSj1Q w1vMxsyFOjCtJwhGUc3mlP46gEqIfFDpqSPDplgwxCH7TMivdY TgzgtzBNZvGT2uT83KkA72CJo/DFUtfR/kwBl7/ZtQ2b8JIY3Y Q2BU3U8NCLDQU5RAszuDzMhKyL1hdK5HN7H4qLxdXBJ0ae/LVp Jdv9//CdmjKyG/FJ9qRscE4anInO3fMvgaEhbn3lnQ= X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 74.208.4.195 Cc: aliguori@linux.vnet.ibm.com, Jes.Sorensen@redhat.com, agl@linux.vnet.ibm.com, mdroth@linux.vnet.ibm.com, lcapitulino@redhat.com Subject: [Qemu-devel] [PATCH v2][ 08/21] qapi: add qapi-types-core.h X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org 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