Revision: 789
http://sourceforge.net/p/fuse-for-macosx/code/789
Author: fredm
Date: 2015-06-03 13:41:46 +0000 (Wed, 03 Jun 2015)
Log Message:
-----------
Make press_key() and release_key() static.
Modified Paths:
--------------
trunk/fuse/fusepb/keystate.c
Modified: trunk/fuse/fusepb/keystate.c
===================================================================
--- trunk/fuse/fusepb/keystate.c 2015-06-03 13:29:56 UTC (rev 788)
+++ trunk/fuse/fusepb/keystate.c 2015-06-03 13:41:46 UTC (rev 789)
@@ -64,7 +64,7 @@
static input_key current_special;
static int normal_count = 0;
-void
+static void
press_key( input_key keysym )
{
input_event_t fuse_event;
@@ -74,7 +74,7 @@
input_event( &fuse_event );
}
-void
+static void
release_key( input_key keysym )
{
input_event_t fuse_event;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|