From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MQSH2-0002RB-Mx for qemu-devel@nongnu.org; Mon, 13 Jul 2009 16:37:20 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MQSGy-0002Qv-Cd for qemu-devel@nongnu.org; Mon, 13 Jul 2009 16:37:20 -0400 Received: from [199.232.76.173] (port=56102 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MQSGy-0002Qs-95 for qemu-devel@nongnu.org; Mon, 13 Jul 2009 16:37:16 -0400 Received: from mail-fx0-f211.google.com ([209.85.220.211]:61628) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MQSGx-0007we-UC for qemu-devel@nongnu.org; Mon, 13 Jul 2009 16:37:16 -0400 Received: by fxm7 with SMTP id 7so2143642fxm.34 for ; Mon, 13 Jul 2009 13:37:15 -0700 (PDT) Mime-Version: 1.0 (Apple Message framework v624) Content-Transfer-Encoding: 7bit Message-Id: <845737b31eba0b317af7cb5887048763@gmail.com> Content-Type: text/plain; charset=US-ASCII; format=flowed From: G 3 Date: Mon, 13 Jul 2009 16:37:09 -0400 Subject: [Qemu-devel] [PATCH] Adds missing function prototype int cocoa_keycode_to_qemu(int keycode) to cocoa.m List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org This patch adds the missing function prototype cocoa_keycode_to_qemu to cocoa.m. Signed-off-by: John Arbuckle --- cocoa.m | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/cocoa.m b/cocoa.m index 3bf1a87..1e5fbe8 100644 --- a/cocoa.m +++ b/cocoa.m @@ -62,6 +62,7 @@ typedef struct { } QEMUScreen; int qemu_main(int argc, char **argv); // main defined in qemu/vl.c +int cocoa_keycode_to_qemu(int keycode); NSWindow *normalWindow; id cocoaView; static DisplayChangeListener *dcl; -- 1.6.3.3