From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49039) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VOaWq-0003s3-6a for qemu-devel@nongnu.org; Tue, 24 Sep 2013 17:52:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VOaWk-0007QW-7f for qemu-devel@nongnu.org; Tue, 24 Sep 2013 17:52:20 -0400 Received: from mx1.redhat.com ([209.132.183.28]:33016) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VOaWj-0007QR-W3 for qemu-devel@nongnu.org; Tue, 24 Sep 2013 17:52:14 -0400 Date: Wed, 25 Sep 2013 00:54:27 +0300 From: "Michael S. Tsirkin" Message-ID: <1380059603-2075-2-git-send-email-mst@redhat.com> References: <1380059603-2075-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1380059603-2075-1-git-send-email-mst@redhat.com> Subject: [Qemu-devel] [PATCH v2 1/4] qemu: add Error to typedefs List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: anthony@codemonkey.ws, pbonzini@redhat.com, afaerber@suse.de, stefanha@redhat.com, kraxel@redhat.com This is so qom headers can use it without pulling in extra headers. Reviewed-by: Paolo Bonzini Signed-off-by: Michael S. Tsirkin --- include/qemu/typedefs.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/qemu/typedefs.h b/include/qemu/typedefs.h index a4c1b84..46c3599 100644 --- a/include/qemu/typedefs.h +++ b/include/qemu/typedefs.h @@ -7,6 +7,7 @@ typedef struct QEMUTimer QEMUTimer; typedef struct QEMUTimerListGroup QEMUTimerListGroup; typedef struct QEMUFile QEMUFile; typedef struct QEMUBH QEMUBH; +typedef struct Error Error; typedef struct AioContext AioContext; -- MST