Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
7ba77f51
Commit
7ba77f51
authored
May 13, 2003
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/control/rc/rc.c: win32 fixes for the handling of special control keys.
parent
c618906c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
modules/control/rc/rc.c
modules/control/rc/rc.c
+6
-2
No files found.
modules/control/rc/rc.c
View file @
7ba77f51
...
@@ -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.3
2 2003/05/05 22:23:34
gbazin Exp $
* $Id: rc.c,v 1.3
3 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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment