我需要Alt在 Windows 7 中交换按键功能。一家大公司需要那些在打字机上书写的老人,打字机的左侧有变音字符键,但他们现在正在开发的 Win7 有Alt这个目的。
两天的研究让我找到了一个驱动程序解决方案。我需要原始 Windows 7 驱动程序的源代码(两个.sys
文件似乎是键盘驱动程序),并可能在 Windows DDK 中修改它们。或者我需要制作一个可以与默认驱动程序一起使用的附加驱动程序。如我所见,解决方案将使用 C 或 C++。但是我必须通过什么方式来实现这一点?我应该采取哪些步骤?
限制是:
- 一次系统重启仅用于驱动安装。
- Alt在 Win7 中工作时交换键的一种简单方法(Alt通过同时按下它们来交换键)。
- 没有需要重新启动的 Win7 键盘重新映射。
稍后添加:我有我需要的一切,但没有处理交换的代码。例如,我为 rightShift和做了一个开关Enter,因为只发送了一个扫描码。但是左Alt发送一个,右Alt发送两个扫描码:
VOID
KbFilter_ServiceCallback(
IN PDEVICE_OBJECT DeviceObject,
IN PKEYBOARD_INPUT_DATA InputDataStart,
IN PKEYBOARD_INPUT_DATA InputDataEnd,
IN OUT PULONG InputDataConsumed
)
/*++
Routine Description:
Called when there are keyboard packets to report to the Win32 subsystem.
You can do anything you like to the packets. For instance:
o Drop a packet altogether
o Mutate the contents of a packet
o Insert packets into the stream
Arguments:
DeviceObject - Context passed during the connect IOCTL
InputDataStart - First packet to be reported
InputDataEnd - One past the last packet to be reported. Total number of
packets is equal to InputDataEnd - InputDataStart
InputDataConsumed - Set to the total number of packets consumed by the RIT
(via the function pointer we replaced in the connect
IOCTL)
Return Value:
Status is returned.
--*/
{
PDEVICE_EXTENSION devExt;
WDFDEVICE hDevice;
hDevice = WdfWdmDeviceGetWdfDeviceHandle(DeviceObject);
devExt = FilterGetData(hDevice);
if (InputDataStart->MakeCode==0x1c)
InputDataStart->MakeCode=0x36;
else if (InputDataStart->MakeCode==0x36)
InputDataStart->MakeCode=0x1c;
else if (InputDataStart->MakeCode==0x9c)
InputDataStart->MakeCode=0xb6;
else if (InputDataStart->MakeCode==0xb6)
InputDataStart->MakeCode=0x9c;
(*(PSERVICE_CALLBACK_ROUTINE)(ULONG_PTR) devExt->UpperConnectData.ClassService)(
devExt->UpperConnectData.ClassDeviceObject,
InputDataStart,
InputDataEnd,
InputDataConsumed);
}
所以我只是简单地交换分别按下和释放两个键的扫描码。正确Alt的是发送两个扫描码,我不确定它是通过两次调用此函数还是在InputDataStart
结构中生成两个扫描码。我会尝试在每个扫描码上发出哔哔声,Alt但我们将不胜感激。