Added Interception to the main loop.

Changed the main app to be 32-bit.
master
Pacman Ghost 7 years ago
parent e8f2ac6964
commit 42bd9fae04
  1. 2
      MainApp/DebugConfig.cs
  2. 8
      MainApp/MouseInterception.csproj
  3. 26
      MainApp/MouseInterception.sln
  4. 10
      MouseDll/api.cpp
  5. 2
      MouseDll/core.cpp
  6. 84
      MouseDll/core2.cpp
  7. 4
      MouseDll/event.cpp
  8. 4
      MouseDll/event.hpp
  9. 16
      MouseDll/globals.cpp
  10. 4
      MouseDll/globals.hpp
  11. 2
      MouseDll/mouse.vcproj
  12. 30
      MouseDll/utils.cpp
  13. 2
      MouseDll/utils.hpp
  14. BIN
      interception/command line installer/install-interception.exe
  15. 194
      interception/library/interception.h
  16. BIN
      interception/licenses/commercial-usage/Interception API.pdf
  17. BIN
      interception/licenses/commercial-usage/Interception.pdf
  18. 165
      interception/licenses/non-commercial-usage/LGPL 3.0.txt

@ -49,7 +49,7 @@ namespace MouseInterception
{
if ( mSettings.mLogging.Length > 0 )
mSettings.mLogging += "|" ;
mSettings.mLogging += xa.Name.ToLower() ;
mSettings.mLogging += xa.Name ;
}
}
}

@ -2,7 +2,7 @@
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<Platform Condition=" '$(Platform)' == '' ">Win32</Platform>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{4D4FFFC1-301B-4312-8861-A62FC5E3C5A7}</ProjectGuid>
@ -13,7 +13,7 @@
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|Win32' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
@ -22,14 +22,16 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|Win32' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />

@ -10,34 +10,32 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mouse", "..\MouseDll\mouse.
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|Mixed Platforms = Debug|Mixed Platforms
Debug|Win32 = Debug|Win32
Release|Any CPU = Release|Any CPU
Release|Mixed Platforms = Release|Mixed Platforms
Release|Win32 = Release|Win32
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{4D4FFFC1-301B-4312-8861-A62FC5E3C5A7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4D4FFFC1-301B-4312-8861-A62FC5E3C5A7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4D4FFFC1-301B-4312-8861-A62FC5E3C5A7}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{4D4FFFC1-301B-4312-8861-A62FC5E3C5A7}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{4D4FFFC1-301B-4312-8861-A62FC5E3C5A7}.Debug|Win32.ActiveCfg = Debug|Any CPU
{4D4FFFC1-301B-4312-8861-A62FC5E3C5A7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4D4FFFC1-301B-4312-8861-A62FC5E3C5A7}.Release|Any CPU.Build.0 = Release|Any CPU
{4D4FFFC1-301B-4312-8861-A62FC5E3C5A7}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{4D4FFFC1-301B-4312-8861-A62FC5E3C5A7}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{4D4FFFC1-301B-4312-8861-A62FC5E3C5A7}.Release|Win32.ActiveCfg = Release|Any CPU
{A0A8359D-6B08-4B29-9BC2-9A2EC676D647}.Debug|Any CPU.ActiveCfg = Debug|Win32
{4D4FFFC1-301B-4312-8861-A62FC5E3C5A7}.Debug|Mixed Platforms.ActiveCfg = Debug|Win32
{4D4FFFC1-301B-4312-8861-A62FC5E3C5A7}.Debug|Mixed Platforms.Build.0 = Debug|Win32
{4D4FFFC1-301B-4312-8861-A62FC5E3C5A7}.Debug|Win32.ActiveCfg = Debug|Win32
{4D4FFFC1-301B-4312-8861-A62FC5E3C5A7}.Debug|Win32.Build.0 = Debug|Win32
{4D4FFFC1-301B-4312-8861-A62FC5E3C5A7}.Release|Mixed Platforms.ActiveCfg = Release|Win32
{4D4FFFC1-301B-4312-8861-A62FC5E3C5A7}.Release|Mixed Platforms.Build.0 = Release|Win32
{4D4FFFC1-301B-4312-8861-A62FC5E3C5A7}.Release|Win32.ActiveCfg = Release|Win32
{4D4FFFC1-301B-4312-8861-A62FC5E3C5A7}.Release|Win32.Build.0 = Release|Win32
{A0A8359D-6B08-4B29-9BC2-9A2EC676D647}.Debug|Mixed Platforms.ActiveCfg = Debug|Win32
{A0A8359D-6B08-4B29-9BC2-9A2EC676D647}.Debug|Mixed Platforms.Build.0 = Debug|Win32
{A0A8359D-6B08-4B29-9BC2-9A2EC676D647}.Debug|Win32.ActiveCfg = Debug|Win32
{A0A8359D-6B08-4B29-9BC2-9A2EC676D647}.Debug|Win32.Build.0 = Debug|Win32
{A0A8359D-6B08-4B29-9BC2-9A2EC676D647}.Release|Any CPU.ActiveCfg = Release|Win32
{A0A8359D-6B08-4B29-9BC2-9A2EC676D647}.Debug|Win32.ActiveCfg = Debug|Win32
{A0A8359D-6B08-4B29-9BC2-9A2EC676D647}.Debug|Win32.Build.0 = Debug|Win32
{A0A8359D-6B08-4B29-9BC2-9A2EC676D647}.Release|Mixed Platforms.ActiveCfg = Release|Win32
{A0A8359D-6B08-4B29-9BC2-9A2EC676D647}.Release|Mixed Platforms.Build.0 = Release|Win32
{A0A8359D-6B08-4B29-9BC2-9A2EC676D647}.Release|Win32.ActiveCfg = Release|Win32
{A0A8359D-6B08-4B29-9BC2-9A2EC676D647}.Release|Win32.Build.0 = Release|Win32
{A0A8359D-6B08-4B29-9BC2-9A2EC676D647}.Release|Win32.ActiveCfg = Release|Win32
{A0A8359D-6B08-4B29-9BC2-9A2EC676D647}.Release|Win32.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE

@ -18,7 +18,7 @@ open_api( PCALLBACKFN pCallbackFn , const ApiDebugConfig* pDebugConfig )
}
catch ( exception& xcptn )
{
return SysAllocString( fromUtf8( MAKE_STRING( xcptn.what() ) ).c_str() ) ;
return SysAllocString( fromUtf8( MAKE_STRING(xcptn) ).c_str() ) ;
}
}
@ -35,7 +35,7 @@ close_api()
}
catch ( exception& xcptn )
{
return SysAllocString( fromUtf8( MAKE_STRING( xcptn.what() ) ).c_str() ) ;
return SysAllocString( fromUtf8( MAKE_STRING(xcptn) ).c_str() ) ;
}
}
@ -66,7 +66,7 @@ reload_config(
}
catch ( exception& xcptn )
{
return SysAllocString( fromUtf8( MAKE_STRING( xcptn.what() ) ).c_str() ) ;
return SysAllocString( fromUtf8( MAKE_STRING(xcptn) ).c_str() ) ;
}
}
@ -83,7 +83,7 @@ reload_debug_config( const ApiDebugConfig* pDebugConfig )
}
catch ( exception& xcptn )
{
return SysAllocString( fromUtf8( MAKE_STRING( xcptn.what() ) ).c_str() ) ;
return SysAllocString( fromUtf8( MAKE_STRING(xcptn) ).c_str() ) ;
}
}
@ -100,6 +100,6 @@ run_main_loop( int* pExitFlag )
}
catch ( exception& xcptn )
{
return SysAllocString( fromUtf8( MAKE_STRING( xcptn.what() ) ).c_str() ) ;
return SysAllocString( fromUtf8( MAKE_STRING(xcptn) ).c_str() ) ;
}
}

@ -32,7 +32,7 @@ openApi( PCALLBACKFN pCallbackFn , const ApiDebugConfig* pDebugConfig )
assert( false ) ;
wcscpy_s( buf , ARRAY_SIZE(buf) , L"interception.dll" ) ;
}
LOG_CMSG( "startup" , "Loading Interception: " << toUtf8(buf) ) ;
LOG_CMSG( "system" , "Loading Interception: " << toUtf8(buf) ) ;
ghInterceptionDll = LoadLibrary( buf ) ;
if ( ghInterceptionDll == NULL )
throw runtime_error( MAKE_STRING( "Can't load Interception: " << getLastErrorString() ) ) ;

@ -1,3 +1,5 @@
#include "interception.h"
#include "globals.hpp"
using namespace std ;
@ -27,10 +29,12 @@ runMainLoop( int* pExitFlag )
}
catch ( exception& xcptn )
{
(*gpCallbackFn)( CBTYPE_FATAL_ERROR , MAKE_CSTRING(xcptn.what()) ) ;
LOG_CMSG( "system" , "Main loop exception: " << xcptn ) ;
(*gpCallbackFn)( CBTYPE_FATAL_ERROR , MAKE_CSTRING(xcptn) ) ;
}
catch ( ... )
{
LOG_CMSG( "system" , "Main loop unknown exception." ) ;
(*gpCallbackFn)( CBTYPE_FATAL_ERROR , "Unknown error." ) ;
}
}
@ -42,14 +46,82 @@ doRunMainLoop( int* pExitFlag )
{
assert( pExitFlag != NULL ) ;
// initialize
LOG_CMSG( "system" , "Main loop started." ) ;
SetPriorityClass( GetCurrentProcess() , HIGH_PRIORITY_CLASS ) ;
// configure Interception
LOG_CMSG( "system" , "Creating context..." ) ;
InterceptionContext hContext = interception_create_context() ;
if ( hContext == NULL )
throw runtime_error( "Can't create context." ) ;
LOG_CMSG( "system" , "- hContext = " << hContext ) ;
LOG_CMSG( "system" , "Setting mouse filter..." ) ;
interception_set_filter(
hContext ,
interception_is_mouse ,
INTERCEPTION_FILTER_MOUSE_MOVE | INTERCEPTION_FILTER_MOUSE_WHEEL | INTERCEPTION_FILTER_MOUSE_HWHEEL
) ;
// run the main loop
InterceptionStroke stroke ;
for ( ; ; )
{
cout << "zzz..." << endl ;
Sleep( 1*1000 ) ;
// check if we should exit
if ( *pExitFlag != 0 )
// wait for the next event
InterceptionDevice hDevice = interception_wait_with_timeout( hContext , 200 ) ;
if ( hDevice == NULL )
{
// check if we should exit
if ( *pExitFlag != 0 )
break ;
continue ;
}
int nStrokes = interception_receive( hContext , hDevice , &stroke , 1 ) ;
if ( nStrokes <= 0 )
break ;
if ( ! interception_is_mouse( hDevice ) )
continue ;
// get the event
InterceptionMouseStroke* pStroke = (InterceptionMouseStroke*) &stroke ;
int keyModifiers = 0 ;
if ( GetAsyncKeyState(VK_CONTROL) < 0 )
keyModifiers |= Event::kmCtrl ;
if ( GetAsyncKeyState(VK_MENU) < 0 )
keyModifiers |= Event::kmAlt ;
if ( GetAsyncKeyState(VK_SHIFT) < 0 )
keyModifiers |= Event::kmShift ;
// log the raw event
if ( isLoggingEnabled( "rawEvents" ) )
{
stringstream buf ;
if ( keyModifiers != 0 )
buf << " " << Event::keyModifiersString(keyModifiers) << " ;" ;
const char* pEventType ;
if ( pStroke->state & INTERCEPTION_MOUSE_WHEEL )
pEventType = "WHEEL" ;
else if ( pStroke->state & INTERCEPTION_MOUSE_HWHEEL )
pEventType = "HWHEEL" ;
else
pEventType = "MOVE" ;
LOG_MSG(
pEventType << ":" << buf.str() << " hDevice=" << hDevice
<< " ; state=0x" << hexString(pStroke->state)
<< " ; flags=0x" << hexString(pStroke->flags)
<< " ; rolling=" << pStroke->rolling
<< " ; x=" << pStroke->x
<< " ; y=" << pStroke->y
<< " ; info=" << pStroke->information
) ;
}
interception_send( hContext , hDevice ,&stroke , 1 ) ;
}
// clean up
LOG_CMSG( "system" , "Destroying context..." ) ;
interception_destroy_context( hContext ) ;
LOG_CMSG( "system" , "Main loop ended." ) ;
}

@ -54,13 +54,15 @@ operator<<( ostream& os , const Event& evt )
// insert the Event
os << "{Event:" << enumString(gEventTypeStringTable,evt.eventType()) ;
if ( evt.keyModifiers() != 0 )
os << ":" << bitFlagsString(gKeyModifiersStringTable,evt.keyModifiers(),'+') ;
os << ":" << Event::keyModifiersString(evt.keyModifiers()) ;
os << "}" ;
return os ;
}
// ---------------------------------------------------------------------
string Event::keyModifiersString( int km ) { return bitFlagsString(gKeyModifiersStringTable,km,'+') ; }
int Event::eventType() const { return mEventType ; }
int Event::keyModifiers() const { return mKeyModifiers ; }
const ActionPtrVector& Event::actions() const { return mActions ; }

@ -29,6 +29,10 @@ public:
public:
void dumpEvent( std::ostream& os , const char* pPrefix="" ) const ;
// miscellaneous methods:
public:
static std::string keyModifiersString( int keyModifiers ) ;
// data members:
private:
int mEventType ;

@ -7,6 +7,12 @@ using namespace std ;
// ---------------------------------------------------------------------
// FIXME! We changed MainApp from AnyCPU to x86, to simplify calling into the mouse DLL (which we build as 32-bit).
// We should really probably provide separate 32- and 64-bit builds :-/
#pragma comment( lib , "../interception/library/x86/interception.lib" )
// ---------------------------------------------------------------------
HMODULE ghInterceptionDll = NULL ;
DeviceTable gDeviceTable ;
@ -83,3 +89,13 @@ makeLogMsg( const string& msg )
return buf.str() ;
}
// ---------------------------------------------------------------------
ostream&
operator<<( ostream& os , const exception& xcptn )
{
// insert the exception
os << xcptn.what() ;
return os ;
}

@ -46,4 +46,8 @@ extern std::ofstream gLogFile ;
// ---------------------------------------------------------------------
extern std::ostream& operator<<( std::ostream& os , const std::exception& xcptn ) ;
// ---------------------------------------------------------------------
#endif // GLOBALS_HPP

@ -41,6 +41,7 @@
<Tool
Name="VCCLCompilerTool"
Optimization="0"
AdditionalIncludeDirectories="..\interception\library"
PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;MOUSE_EXPORTS"
MinimalRebuild="true"
BasicRuntimeChecks="3"
@ -117,6 +118,7 @@
Name="VCCLCompilerTool"
Optimization="2"
EnableIntrinsicFunctions="true"
AdditionalIncludeDirectories="..\interception\library"
PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;MOUSE_EXPORTS"
RuntimeLibrary="2"
EnableFunctionLevelLinking="true"

@ -1,3 +1,5 @@
#include <limits>
#include "utils.hpp"
#include "globals.hpp"
@ -117,3 +119,31 @@ fromUtf8( const char* pStr , int len )
return buf ;
}
// ---------------------------------------------------------------------
template<class T>
string
hexString( T val , int fieldWidth )
{
// convert the numeric value to a hex string
stringstream buf ;
if ( fieldWidth < 0 )
fieldWidth = (numeric_limits<T>::digits + 3) / 4 ;
buf.width( fieldWidth ) ;
buf.fill( '0' ) ;
buf << hex << val ;
string bufVal = buf.str() ;
char* p = const_cast<char*>( bufVal.c_str() ) ;
for ( ; *p != '\0' ; ++p )
*p = toupper( *p ) ;
return bufVal ;
}
template string hexString<int>( int , int ) ; // nb: instantiate the template
template string hexString<unsigned int>( unsigned int , int ) ; // nb: instantiate the template
template string hexString<short>( short , int ) ; // nb: instantiate the template
template string hexString<unsigned short>( unsigned short , int ) ; // nb: instantiate the template
template string hexString<long>( long , int ) ; // nb: instantiate the template
template string hexString<unsigned long>( unsigned long , int ) ; // nb: instantiate the template
template string hexString<void*>( void* , int ) ; // nb: instantiate the template

@ -27,6 +27,8 @@ inline std::string toUtf8( const std::wstring& str ) { return toUtf8(str.c_str()
extern std::wstring fromUtf8( const char* pStr , int len=-1 ) ;
inline std::wstring fromUtf8( const std::string& str ) { return fromUtf8(str.c_str(),str.length()) ; }
template<class T> extern std::string hexString( T val , int fieldWidth=-1 ) ;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// NOTE: These are not implemented and will generate a link error if we accidentally

@ -0,0 +1,194 @@
#ifndef _INTERCEPTION_H_
#define _INTERCEPTION_H_
#ifdef INTERCEPTION_STATIC
#define INTERCEPTION_API
#else
#if defined _WIN32 || defined __CYGWIN__
#ifdef INTERCEPTION_EXPORT
#ifdef __GNUC__
#define INTERCEPTION_API __attribute__((dllexport))
#else
#define INTERCEPTION_API __declspec(dllexport)
#endif
#else
#ifdef __GNUC__
#define INTERCEPTION_API __attribute__((dllimport))
#else
#define INTERCEPTION_API __declspec(dllimport)
#endif
#endif
#else
#if __GNUC__ >= 4
#define INTERCEPTION_API __attribute__ ((visibility("default")))
#else
#define INTERCEPTION_API
#endif
#endif
#endif
#ifdef __cplusplus
extern "C" {
#endif
#define INTERCEPTION_MAX_KEYBOARD 10
#define INTERCEPTION_MAX_MOUSE 10
#define INTERCEPTION_MAX_DEVICE ((INTERCEPTION_MAX_KEYBOARD) + (INTERCEPTION_MAX_MOUSE))
#define INTERCEPTION_KEYBOARD(index) ((index) + 1)
#define INTERCEPTION_MOUSE(index) ((INTERCEPTION_MAX_KEYBOARD) + (index) + 1)
typedef void *InterceptionContext;
typedef int InterceptionDevice;
typedef int InterceptionPrecedence;
typedef unsigned short InterceptionFilter;
typedef int (*InterceptionPredicate)(InterceptionDevice device);
enum InterceptionKeyState
{
INTERCEPTION_KEY_DOWN = 0x00,
INTERCEPTION_KEY_UP = 0x01,
INTERCEPTION_KEY_E0 = 0x02,
INTERCEPTION_KEY_E1 = 0x04,
INTERCEPTION_KEY_TERMSRV_SET_LED = 0x08,
INTERCEPTION_KEY_TERMSRV_SHADOW = 0x10,
INTERCEPTION_KEY_TERMSRV_VKPACKET = 0x20
};
enum InterceptionFilterKeyState
{
INTERCEPTION_FILTER_KEY_NONE = 0x0000,
INTERCEPTION_FILTER_KEY_ALL = 0xFFFF,
INTERCEPTION_FILTER_KEY_DOWN = INTERCEPTION_KEY_UP,
INTERCEPTION_FILTER_KEY_UP = INTERCEPTION_KEY_UP << 1,
INTERCEPTION_FILTER_KEY_E0 = INTERCEPTION_KEY_E0 << 1,
INTERCEPTION_FILTER_KEY_E1 = INTERCEPTION_KEY_E1 << 1,
INTERCEPTION_FILTER_KEY_TERMSRV_SET_LED = INTERCEPTION_KEY_TERMSRV_SET_LED << 1,
INTERCEPTION_FILTER_KEY_TERMSRV_SHADOW = INTERCEPTION_KEY_TERMSRV_SHADOW << 1,
INTERCEPTION_FILTER_KEY_TERMSRV_VKPACKET = INTERCEPTION_KEY_TERMSRV_VKPACKET << 1
};
enum InterceptionMouseState
{
INTERCEPTION_MOUSE_LEFT_BUTTON_DOWN = 0x001,
INTERCEPTION_MOUSE_LEFT_BUTTON_UP = 0x002,
INTERCEPTION_MOUSE_RIGHT_BUTTON_DOWN = 0x004,
INTERCEPTION_MOUSE_RIGHT_BUTTON_UP = 0x008,
INTERCEPTION_MOUSE_MIDDLE_BUTTON_DOWN = 0x010,
INTERCEPTION_MOUSE_MIDDLE_BUTTON_UP = 0x020,
INTERCEPTION_MOUSE_BUTTON_1_DOWN = INTERCEPTION_MOUSE_LEFT_BUTTON_DOWN,
INTERCEPTION_MOUSE_BUTTON_1_UP = INTERCEPTION_MOUSE_LEFT_BUTTON_UP,
INTERCEPTION_MOUSE_BUTTON_2_DOWN = INTERCEPTION_MOUSE_RIGHT_BUTTON_DOWN,
INTERCEPTION_MOUSE_BUTTON_2_UP = INTERCEPTION_MOUSE_RIGHT_BUTTON_UP,
INTERCEPTION_MOUSE_BUTTON_3_DOWN = INTERCEPTION_MOUSE_MIDDLE_BUTTON_DOWN,
INTERCEPTION_MOUSE_BUTTON_3_UP = INTERCEPTION_MOUSE_MIDDLE_BUTTON_UP,
INTERCEPTION_MOUSE_BUTTON_4_DOWN = 0x040,
INTERCEPTION_MOUSE_BUTTON_4_UP = 0x080,
INTERCEPTION_MOUSE_BUTTON_5_DOWN = 0x100,
INTERCEPTION_MOUSE_BUTTON_5_UP = 0x200,
INTERCEPTION_MOUSE_WHEEL = 0x400,
INTERCEPTION_MOUSE_HWHEEL = 0x800
};
enum InterceptionFilterMouseState
{
INTERCEPTION_FILTER_MOUSE_NONE = 0x0000,
INTERCEPTION_FILTER_MOUSE_ALL = 0xFFFF,
INTERCEPTION_FILTER_MOUSE_LEFT_BUTTON_DOWN = INTERCEPTION_MOUSE_LEFT_BUTTON_DOWN,
INTERCEPTION_FILTER_MOUSE_LEFT_BUTTON_UP = INTERCEPTION_MOUSE_LEFT_BUTTON_UP,
INTERCEPTION_FILTER_MOUSE_RIGHT_BUTTON_DOWN = INTERCEPTION_MOUSE_RIGHT_BUTTON_DOWN,
INTERCEPTION_FILTER_MOUSE_RIGHT_BUTTON_UP = INTERCEPTION_MOUSE_RIGHT_BUTTON_UP,
INTERCEPTION_FILTER_MOUSE_MIDDLE_BUTTON_DOWN = INTERCEPTION_MOUSE_MIDDLE_BUTTON_DOWN,
INTERCEPTION_FILTER_MOUSE_MIDDLE_BUTTON_UP = INTERCEPTION_MOUSE_MIDDLE_BUTTON_UP,
INTERCEPTION_FILTER_MOUSE_BUTTON_1_DOWN = INTERCEPTION_MOUSE_BUTTON_1_DOWN,
INTERCEPTION_FILTER_MOUSE_BUTTON_1_UP = INTERCEPTION_MOUSE_BUTTON_1_UP,
INTERCEPTION_FILTER_MOUSE_BUTTON_2_DOWN = INTERCEPTION_MOUSE_BUTTON_2_DOWN,
INTERCEPTION_FILTER_MOUSE_BUTTON_2_UP = INTERCEPTION_MOUSE_BUTTON_2_UP,
INTERCEPTION_FILTER_MOUSE_BUTTON_3_DOWN = INTERCEPTION_MOUSE_BUTTON_3_DOWN,
INTERCEPTION_FILTER_MOUSE_BUTTON_3_UP = INTERCEPTION_MOUSE_BUTTON_3_UP,
INTERCEPTION_FILTER_MOUSE_BUTTON_4_DOWN = INTERCEPTION_MOUSE_BUTTON_4_DOWN,
INTERCEPTION_FILTER_MOUSE_BUTTON_4_UP = INTERCEPTION_MOUSE_BUTTON_4_UP,
INTERCEPTION_FILTER_MOUSE_BUTTON_5_DOWN = INTERCEPTION_MOUSE_BUTTON_5_DOWN,
INTERCEPTION_FILTER_MOUSE_BUTTON_5_UP = INTERCEPTION_MOUSE_BUTTON_5_UP,
INTERCEPTION_FILTER_MOUSE_WHEEL = INTERCEPTION_MOUSE_WHEEL,
INTERCEPTION_FILTER_MOUSE_HWHEEL = INTERCEPTION_MOUSE_HWHEEL,
INTERCEPTION_FILTER_MOUSE_MOVE = 0x1000
};
enum InterceptionMouseFlag
{
INTERCEPTION_MOUSE_MOVE_RELATIVE = 0x000,
INTERCEPTION_MOUSE_MOVE_ABSOLUTE = 0x001,
INTERCEPTION_MOUSE_VIRTUAL_DESKTOP = 0x002,
INTERCEPTION_MOUSE_ATTRIBUTES_CHANGED = 0x004,
INTERCEPTION_MOUSE_MOVE_NOCOALESCE = 0x008,
INTERCEPTION_MOUSE_TERMSRV_SRC_SHADOW = 0x100
};
typedef struct
{
unsigned short state;
unsigned short flags;
short rolling;
int x;
int y;
unsigned int information;
} InterceptionMouseStroke;
typedef struct
{
unsigned short code;
unsigned short state;
unsigned int information;
} InterceptionKeyStroke;
typedef char InterceptionStroke[sizeof(InterceptionMouseStroke)];
InterceptionContext INTERCEPTION_API interception_create_context(void);
void INTERCEPTION_API interception_destroy_context(InterceptionContext context);
InterceptionPrecedence INTERCEPTION_API interception_get_precedence(InterceptionContext context, InterceptionDevice device);
void INTERCEPTION_API interception_set_precedence(InterceptionContext context, InterceptionDevice device, InterceptionPrecedence precedence);
InterceptionFilter INTERCEPTION_API interception_get_filter(InterceptionContext context, InterceptionDevice device);
void INTERCEPTION_API interception_set_filter(InterceptionContext context, InterceptionPredicate predicate, InterceptionFilter filter);
InterceptionDevice INTERCEPTION_API interception_wait(InterceptionContext context);
InterceptionDevice INTERCEPTION_API interception_wait_with_timeout(InterceptionContext context, unsigned long milliseconds);
int INTERCEPTION_API interception_send(InterceptionContext context, InterceptionDevice device, const InterceptionStroke *stroke, unsigned int nstroke);
int INTERCEPTION_API interception_receive(InterceptionContext context, InterceptionDevice device, InterceptionStroke *stroke, unsigned int nstroke);
unsigned int INTERCEPTION_API interception_get_hardware_id(InterceptionContext context, InterceptionDevice device, void *hardware_id_buffer, unsigned int buffer_size);
int INTERCEPTION_API interception_is_invalid(InterceptionDevice device);
int INTERCEPTION_API interception_is_keyboard(InterceptionDevice device);
int INTERCEPTION_API interception_is_mouse(InterceptionDevice device);
#ifdef __cplusplus
}
#endif
#endif

@ -0,0 +1,165 @@
GNU LESSER GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
This version of the GNU Lesser General Public License incorporates
the terms and conditions of version 3 of the GNU General Public
License, supplemented by the additional permissions listed below.
0. Additional Definitions.
As used herein, "this License" refers to version 3 of the GNU Lesser
General Public License, and the "GNU GPL" refers to version 3 of the GNU
General Public License.
"The Library" refers to a covered work governed by this License,
other than an Application or a Combined Work as defined below.
An "Application" is any work that makes use of an interface provided
by the Library, but which is not otherwise based on the Library.
Defining a subclass of a class defined by the Library is deemed a mode
of using an interface provided by the Library.
A "Combined Work" is a work produced by combining or linking an
Application with the Library. The particular version of the Library
with which the Combined Work was made is also called the "Linked
Version".
The "Minimal Corresponding Source" for a Combined Work means the
Corresponding Source for the Combined Work, excluding any source code
for portions of the Combined Work that, considered in isolation, are
based on the Application, and not on the Linked Version.
The "Corresponding Application Code" for a Combined Work means the
object code and/or source code for the Application, including any data
and utility programs needed for reproducing the Combined Work from the
Application, but excluding the System Libraries of the Combined Work.
1. Exception to Section 3 of the GNU GPL.
You may convey a covered work under sections 3 and 4 of this License
without being bound by section 3 of the GNU GPL.
2. Conveying Modified Versions.
If you modify a copy of the Library, and, in your modifications, a
facility refers to a function or data to be supplied by an Application
that uses the facility (other than as an argument passed when the
facility is invoked), then you may convey a copy of the modified
version:
a) under this License, provided that you make a good faith effort to
ensure that, in the event an Application does not supply the
function or data, the facility still operates, and performs
whatever part of its purpose remains meaningful, or
b) under the GNU GPL, with none of the additional permissions of
this License applicable to that copy.
3. Object Code Incorporating Material from Library Header Files.
The object code form of an Application may incorporate material from
a header file that is part of the Library. You may convey such object
code under terms of your choice, provided that, if the incorporated
material is not limited to numerical parameters, data structure
layouts and accessors, or small macros, inline functions and templates
(ten or fewer lines in length), you do both of the following:
a) Give prominent notice with each copy of the object code that the
Library is used in it and that the Library and its use are
covered by this License.
b) Accompany the object code with a copy of the GNU GPL and this license
document.
4. Combined Works.
You may convey a Combined Work under terms of your choice that,
taken together, effectively do not restrict modification of the
portions of the Library contained in the Combined Work and reverse
engineering for debugging such modifications, if you also do each of
the following:
a) Give prominent notice with each copy of the Combined Work that
the Library is used in it and that the Library and its use are
covered by this License.
b) Accompany the Combined Work with a copy of the GNU GPL and this license
document.
c) For a Combined Work that displays copyright notices during
execution, include the copyright notice for the Library among
these notices, as well as a reference directing the user to the
copies of the GNU GPL and this license document.
d) Do one of the following:
0) Convey the Minimal Corresponding Source under the terms of this
License, and the Corresponding Application Code in a form
suitable for, and under terms that permit, the user to
recombine or relink the Application with a modified version of
the Linked Version to produce a modified Combined Work, in the
manner specified by section 6 of the GNU GPL for conveying
Corresponding Source.
1) Use a suitable shared library mechanism for linking with the
Library. A suitable mechanism is one that (a) uses at run time
a copy of the Library already present on the user's computer
system, and (b) will operate properly with a modified version
of the Library that is interface-compatible with the Linked
Version.
e) Provide Installation Information, but only if you would otherwise
be required to provide such information under section 6 of the
GNU GPL, and only to the extent that such information is
necessary to install and execute a modified version of the
Combined Work produced by recombining or relinking the
Application with a modified version of the Linked Version. (If
you use option 4d0, the Installation Information must accompany
the Minimal Corresponding Source and Corresponding Application
Code. If you use option 4d1, you must provide the Installation
Information in the manner specified by section 6 of the GNU GPL
for conveying Corresponding Source.)
5. Combined Libraries.
You may place library facilities that are a work based on the
Library side by side in a single library together with other library
facilities that are not Applications and are not covered by this
License, and convey such a combined library under terms of your
choice, if you do both of the following:
a) Accompany the combined library with a copy of the same work based
on the Library, uncombined with any other library facilities,
conveyed under the terms of this License.
b) Give prominent notice with the combined library that part of it
is a work based on the Library, and explaining where to find the
accompanying uncombined form of the same work.
6. Revised Versions of the GNU Lesser General Public License.
The Free Software Foundation may publish revised and/or new versions
of the GNU Lesser General Public License from time to time. Such new
versions will be similar in spirit to the present version, but may
differ in detail to address new problems or concerns.
Each version is given a distinguishing version number. If the
Library as you received it specifies that a certain numbered version
of the GNU Lesser General Public License "or any later version"
applies to it, you have the option of following the terms and
conditions either of that published version or of any later version
published by the Free Software Foundation. If the Library as you
received it does not specify a version number of the GNU Lesser
General Public License, you may choose any version of the GNU Lesser
General Public License ever published by the Free Software Foundation.
If the Library as you received it specifies that a proxy can decide
whether future versions of the GNU Lesser General Public License shall
apply, that proxy's public statement of acceptance of any version is
permanent authorization for you to choose that version for the
Library.
Loading…
Cancel
Save