Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 582 Bytes

ManyMouse.java

File metadata and controls

22 lines (18 loc) · 582 Bytes
 
Jul 28, 2007
Jul 28, 2007
1
2
3
4
5
6
7
8
/*
* Java bindings to the ManyMouse C code, via JNI.
*
* Please see the file LICENSE in the source's root directory.
*
* This file written by Ryan C. Gordon.
*/
9
10
11
12
13
14
15
16
17
18
19
20
21
public class ManyMouse
{
// Native method hooks.
public native static synchronized int Init();
public native static synchronized void Quit();
public native static synchronized String DeviceName(int index);
public native static synchronized boolean PollEvent(ManyMouseEvent event);
// JNI link.
static { System.loadLibrary("ManyMouse"); }
} // ManyMouse
// end of ManyMouse.java ...