Commit 7ba77f51 authored by Gildas Bazin's avatar Gildas Bazin

* modules/control/rc/rc.c: win32 fixes for the handling of special control keys.
parent c618906c
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* rc.c : remote control stdin/stdout plugin for vlc * rc.c : remote control stdin/stdout plugin for vlc
***************************************************************************** *****************************************************************************
* Copyright (C) 2001 VideoLAN * Copyright (C) 2001 VideoLAN
* $Id: rc.c,v 1.32 2003/05/05 22:23:34 gbazin Exp $ * $Id: rc.c,v 1.33 2003/05/13 12:09:29 gbazin Exp $
* *
* Authors: Peter Surda <shurdeek@panorama.sth.ac.at> * Authors: Peter Surda <shurdeek@panorama.sth.ac.at>
* *
...@@ -242,7 +242,11 @@ static void Run( intf_thread_t *p_intf ) ...@@ -242,7 +242,11 @@ static void Run( intf_thread_t *p_intf )
{ {
#ifdef WIN32 #ifdef WIN32
if( input_record.EventType != KEY_EVENT || if( input_record.EventType != KEY_EVENT ||
!input_record.Event.KeyEvent.bKeyDown ) !input_record.Event.KeyEvent.bKeyDown ||
input_record.Event.KeyEvent.wVirtualKeyCode == VK_SHIFT ||
input_record.Event.KeyEvent.wVirtualKeyCode == VK_CONTROL||
input_record.Event.KeyEvent.wVirtualKeyCode == VK_MENU ||
input_record.Event.KeyEvent.wVirtualKeyCode == VK_CAPITAL )
{ {
/* nothing interesting */ /* nothing interesting */
continue; continue;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment