forked from CleverRaven/Cataclysm-DDA
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from CleverRaven/master
Catching up to current version
- Loading branch information
Showing
592 changed files
with
113,606 additions
and
64,705 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -104,6 +104,7 @@ nbproject/ | |
*.vim | ||
*.session | ||
.ycm_extra_conf.py | ||
.vimrc | ||
|
||
# taskwarrior files | ||
*.task* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package org.libsdl.app; | ||
|
||
interface HIDDevice | ||
{ | ||
public int getId(); | ||
public int getVendorId(); | ||
public int getProductId(); | ||
public String getSerialNumber(); | ||
public int getVersion(); | ||
public String getManufacturerName(); | ||
public String getProductName(); | ||
public boolean open(); | ||
public int sendFeatureReport(byte[] report); | ||
public int sendOutputReport(byte[] report); | ||
public boolean getFeatureReport(byte[] report); | ||
public void setFrozen(boolean frozen); | ||
public void close(); | ||
public void shutdown(); | ||
} |
Oops, something went wrong.