简体   繁体   English

标准键盘驱动程序源代码-在哪里可以找到它?

[英]Standard Keyboard Driver Source Code - Where can I find this?

I am looking for the standard source code for a keyboard. 我正在寻找键盘的标准源代码。 Is there any where that I can download this source code so that I can modify it for my own use? 有什么地方可以下载此源代码,以便可以对其进行修改以供自己使用?

No such thing as "standard source code" for a keyboard. 没有键盘的“标准源代码”之类的东西。 Here's a page on the Linux keyboard driver: http://www.linuxjournal.com/article/1080 这是Linux键盘驱动程序上的页面: http : //www.linuxjournal.com/article/1080

Your best chance for a Windows keyboard driver will probably be to get the Windows DDK (Device Driver development Kit). Windows键盘驱动程序的最佳机会可能是获得Windows DDK(设备驱动程序开发套件)。 OTOH, based on the questions' tags (especially vb.net) I'm left wondering exactly why you'd want that. OTOH,基于问题的标签(尤其是vb.net),我想知道您为什么要这么做。 The keyboard driver itself mostly just gets activated when the user presses a key, gets the data, and goes back to sleep. 当用户按下一个键,获取数据并返回睡眠状态时,键盘驱动程序本身通常只会被激活。 If you're interested in something like mapping keys to different characters, that's not in the keyboard driver itself at all (without even looking at any code for the driver itself). 如果您对将键映射到不同的字符感兴趣,那么根本不需要键盘驱动程序本身(甚至无需查看驱动程序本身的任何代码)。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 在哪里可以找到GCC源代码中strncpy()函数的实现? - Where can I find the implementation of strncpy() function in GCC source code? 在哪里可以找到用于对某个编译器进行基准测试的良好源代码? - Where can I find a good source code for benchmarking a certain compiler? 在哪里可以找到libcrypto ++的源代码? - where can i find source code for libcrypto++? 在哪里可以将源代码下载到GNU C ++标准库? - Where can I download the source code to the GNU C++ Standard Library? C ++标准库与凡人制作代码+我在哪里可以找到来源? - C++ standard library vs mortal made code + where can I find the sources? 在哪里可以找到 GNU stdc++ operator new 的源代码? - Where can I find the source code for GNU stdc++ operator new? 在哪里可以找到“使用DirectX 9.0c进行3D游戏编程简介”的源代码示例? - Where can I find the source code examples for “Introduction to 3D game programming with DirectX 9.0c”? 在哪里可以找到C ++标准库中特定功能的源代码? (Visual Studio安装) - Where to find source code for specific function in C++ standard library? (Visual Studio installation) 在哪里可以找到标准库中“采用”标识符的列表 - Where can I find listings of “taken” identifiers in standard libraries 在哪里可以找到标准的 Visual C++ 头文件? - Where can I find the standard Visual C++ header files?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM