From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41638) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VNdsN-0005E8-DX for qemu-devel@nongnu.org; Sun, 22 Sep 2013 03:14:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VNdsH-00013N-7J for qemu-devel@nongnu.org; Sun, 22 Sep 2013 03:14:39 -0400 Received: from mx1.redhat.com ([209.132.183.28]:54521) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VNdsH-00013E-06 for qemu-devel@nongnu.org; Sun, 22 Sep 2013 03:14:33 -0400 Date: Sun, 22 Sep 2013 10:16:47 +0300 From: "Michael S. Tsirkin" Message-ID: <1379834193-27842-2-git-send-email-mst@redhat.com> References: <1379834193-27842-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1379834193-27842-1-git-send-email-mst@redhat.com> Subject: [Qemu-devel] [PATCH 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 This is so qom headers can use it without pulling in extra headers. 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 c5c6e36..bb5acf9 100644 --- a/include/qemu/typedefs.h +++ b/include/qemu/typedefs.h @@ -9,6 +9,7 @@ typedef struct QEMUFile QEMUFile; typedef struct QEMUBH QEMUBH; typedef struct QInt QInt; typedef struct QObject QObject; +typedef struct Error Error; typedef struct AioContext AioContext; -- MST