From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43808) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xorbc-0005Q2-5U for qemu-devel@nongnu.org; Thu, 13 Nov 2014 05:26:30 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XorbP-0006zA-Nq for qemu-devel@nongnu.org; Thu, 13 Nov 2014 05:26:24 -0500 Received: from mx1.redhat.com ([209.132.183.28]:35117) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XorbP-0006z4-HI for qemu-devel@nongnu.org; Thu, 13 Nov 2014 05:26:11 -0500 Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id sADAQA3M031027 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Thu, 13 Nov 2014 05:26:11 -0500 From: Gerd Hoffmann Date: Thu, 13 Nov 2014 11:26:05 +0100 Message-Id: <1415874366-32521-2-git-send-email-kraxel@redhat.com> In-Reply-To: <1415874366-32521-1-git-send-email-kraxel@redhat.com> References: <1415874366-32521-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PULL for-2.2 1/2] QMP/input-send-event: update document of union InputEvent List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Markus Armbruster , Amos Kong , Gerd Hoffmann , Luiz Capitulino From: Amos Kong Signed-off-by: Amos Kong Reviewed-by: Eric Blake Signed-off-by: Gerd Hoffmann --- qapi-schema.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/qapi-schema.json b/qapi-schema.json index 24379ab..7e7468f 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -3231,6 +3231,11 @@ # # Input event union. # +# @key: Input event of Keyboard +# @btn: Input event of pointer buttons +# @rel: Input event of relative pointer motion +# @abs: Input event of absolute pointer motion +# # Since: 2.0 ## { 'union' : 'InputEvent', -- 1.8.3.1