hidapi: Blacklist the Razer Lycosa keyboard from enumeration.

It's not a joystick and it hangs device enumeration.
diff --git a/src/hidapi/windows/hid.c b/src/hidapi/windows/hid.c
index 715450c..2f66c50 100644
--- a/src/hidapi/windows/hid.c
+++ b/src/hidapi/windows/hid.c
@@ -320,6 +320,12 @@
 		return 1;
 	}
 
+	// Razer Lycosa Gaming keyboard - Causes deadlock when asking for device details
+	if ( vendor_id == 0x1532 && product_id == 0x0109 )
+	{
+		return 1;
+	}
+
 	// SPEEDLINK COMPETITION PRO - turns into an Android controller when enumerated
 	if ( vendor_id == 0x0738 && product_id == 0x2217 )
 	{