Windows: Removed directinput files, since they are now unused. Fixed headers build.xml target

This commit is contained in:
Elias Naur 2008-04-10 20:47:29 +00:00
parent e50dc04191
commit 657bd156e2
15 changed files with 4 additions and 1405 deletions

View file

@ -205,15 +205,6 @@ final class WindowsDisplay implements DisplayImplementation {
rect.offset(offset_x, offset_y);
}
static WindowsDirectInput createDirectInput() throws LWJGLException {
try {
return new WindowsDirectInput8(getDllInstance());
} catch (LWJGLException e) {
LWJGLUtil.log("Failed to create DirectInput 8 interface, falling back to DirectInput 3");
return new WindowsDirectInput3(getDllInstance());
}
}
static void setupCursorClipping(long hwnd) throws LWJGLException {
cursor_clipped = true;
getGlobalClientRect(hwnd, rect);