Package | Description |
---|---|
com.SIMRacingApps |
This package is the root level package of com.SIMRacingapps.
|
Modifier and Type | Method and Description |
---|---|
static Windows.Handle |
Windows.openCommPort(int portNumber)
|
static Windows.Handle |
Windows.openEvent(java.lang.String eventName)
Returns a Handle to an Event.
|
static Windows.Handle |
Windows.openFileMapping(java.lang.String filename)
Returns a Handle to a memory mapped file.
|
Modifier and Type | Method and Description |
---|---|
static void |
Windows.closeHandle(Windows.Handle h)
Closes a previously opened Handle
|
static Windows.Pointer |
Windows.mapViewOfFile(Windows.Handle h)
Returns a Pointer to the memory where the file was mapped to.
|
static boolean |
Windows.setCommPortDTR(Windows.Handle hCommPort,
boolean flag)
This method either sets or clears the DTR signal on the comm port.
|
static boolean |
Windows.setCommPortRTS(Windows.Handle hCommPort,
boolean flag)
This method either sets or clears the RTS signal on the comm port.
|
static void |
Windows.waitForSingleObject(Windows.Handle h,
int timeout)
Waits for a specified amount of time for an event to occur.
|