Changeset 366
- Timestamp:
- 02/04/08 09:40:01 (11 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
Apple Wireless Keyboard Helper/trunk/Misuzilla.Applications.AppleWirelessKeyboardHelper/Helper.cs
r350 r366 26 26 private const UInt32 VIDApple = 0x5ac; 27 27 private const UInt32 PIDAppleWirelessKeyboardUS = 0x22c; 28 private const UInt32 PIDAppleWirelessKeyboardFR = 0x22d; 28 29 private const UInt32 PIDAppleWirelessKeyboardJIS = 0x22e; 29 30 … … 62 63 Debug.WriteLine(String.Format("VendorID:{0:x}, ProductID:{1:x}, VersionNumber:{2:x}", attrib.VendorID, attrib.ProductID, attrib.VersionNumber)); 63 64 if (attrib.VendorID == VIDApple && 64 (attrib.ProductID == PIDAppleWirelessKeyboardUS || attrib.ProductID == PIDAppleWirelessKeyboardJIS ))65 (attrib.ProductID == PIDAppleWirelessKeyboardUS || attrib.ProductID == PIDAppleWirelessKeyboardJIS || attrib.ProductID == PIDAppleWirelessKeyboardFR)) 65 66 { 66 67 _stream = new FileStream(mHandle, FileAccess.ReadWrite, 22, true);
