Begonnen aan nieuwe implementatie van Winamp mbv windows command line device.

This commit is contained in:
2011-03-15 21:06:54 +00:00
parent d8e79c3363
commit 8c2ac7d956
5 changed files with 60 additions and 12 deletions

View File

@@ -30,12 +30,12 @@ public class Windows {
return findWindow.executeCall(new Object[] {className, windowName});
}
public static boolean postMessage(int handle, int message, int wParam, int lParam) {
return postMessage.executeBooleanCall(new Object[] {handle, message, wParam, lParam});
public static int postMessage(int handle, int message, int wParam, int lParam) {
return postMessage.executeCall(new Object[] {handle, message, wParam, lParam});
}
public static boolean sendMessage(int handle, int message, int wParam, int lParam) {
return sendMessage.executeBooleanCall(new Object[] {handle, message, wParam, lParam});
public static int sendMessage(int handle, int message, int wParam, int lParam) {
return sendMessage.executeCall(new Object[] {handle, message, wParam, lParam});
}
public static int mapVirtualKey(int code, int mapType) {