├── ASSoft.sln ├── Debug ├── Background.jpg ├── PreDemo.ini └── wav │ ├── BJ.wav │ ├── 出现奖励.wav │ ├── 卡机了.wav │ ├── 宠物捉满了.wav │ ├── 开始挂机.wav │ ├── 物品栏满了.wav │ └── 身上没钱了.wav ├── PreDemo ├── Background.jpg ├── GameState.cpp ├── GameState.h ├── MyComboBox.cpp ├── MyComboBox.h ├── MyDialog.cpp ├── MyDialog.h ├── MyHotKeyCtrl.cpp ├── MyHotKeyCtrl.h ├── Page1.cpp ├── Page1.h ├── Page2.cpp ├── Page2.h ├── Page3.cpp ├── Page3.h ├── Page4.cpp ├── Page4.h ├── PreDemo.cpp ├── PreDemo.h ├── PreDemo.rc ├── PreDemo.vcproj ├── PreDemo.vcxproj ├── PreDemo.vcxproj.filters ├── PreDemoDlg.cpp ├── PreDemoDlg.h ├── TabPage.cpp ├── TabPage.h ├── ThreadProc.cpp ├── ThreadProc.h ├── bm.cpp ├── bm.h ├── km.cpp ├── km.h ├── mapLine.cpp ├── mapLine.h ├── res │ ├── PreDemo.ico │ ├── PreDemo.rc2 │ └── app.xml ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── README.md ├── Release ├── Background.jpg ├── PreDemo.exe ├── PreDemo.ini └── kmclass.sys ├── kmclass Package ├── kmclass Package.vcxproj └── kmclass Package.vcxproj.filters ├── kmclass ├── VisualDDKHelpers.h ├── afxres.h ├── common.h ├── kmclass.cpp ├── kmclass.h ├── kmclass.inf ├── kmclass.rc ├── kmclass.vcxproj ├── kmclass.vcxproj.filters ├── kmclass.vcxproj.user ├── resource.h ├── stdafx.cpp └── stdafx.h ├── kmclassdll ├── ReadMe.txt ├── kmclass.h ├── kmclassdll.cpp ├── kmclassdll.vcproj ├── kmclassdll.vcxproj ├── kmclassdll.vcxproj.filters ├── stdafx.cpp └── stdafx.h ├── pingme.txt ├── snatshot.png └── 搜索KeyboardClassServiceCallback.txt /ASSoft.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/ASSoft.sln -------------------------------------------------------------------------------- /Debug/Background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/Debug/Background.jpg -------------------------------------------------------------------------------- /Debug/PreDemo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/Debug/PreDemo.ini -------------------------------------------------------------------------------- /Debug/wav/BJ.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/Debug/wav/BJ.wav -------------------------------------------------------------------------------- /Debug/wav/出现奖励.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/Debug/wav/出现奖励.wav -------------------------------------------------------------------------------- /Debug/wav/卡机了.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/Debug/wav/卡机了.wav -------------------------------------------------------------------------------- /Debug/wav/宠物捉满了.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/Debug/wav/宠物捉满了.wav -------------------------------------------------------------------------------- /Debug/wav/开始挂机.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/Debug/wav/开始挂机.wav -------------------------------------------------------------------------------- /Debug/wav/物品栏满了.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/Debug/wav/物品栏满了.wav -------------------------------------------------------------------------------- /Debug/wav/身上没钱了.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/Debug/wav/身上没钱了.wav -------------------------------------------------------------------------------- /PreDemo/Background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/Background.jpg -------------------------------------------------------------------------------- /PreDemo/GameState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/GameState.cpp -------------------------------------------------------------------------------- /PreDemo/GameState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/GameState.h -------------------------------------------------------------------------------- /PreDemo/MyComboBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/MyComboBox.cpp -------------------------------------------------------------------------------- /PreDemo/MyComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/MyComboBox.h -------------------------------------------------------------------------------- /PreDemo/MyDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/MyDialog.cpp -------------------------------------------------------------------------------- /PreDemo/MyDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/MyDialog.h -------------------------------------------------------------------------------- /PreDemo/MyHotKeyCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/MyHotKeyCtrl.cpp -------------------------------------------------------------------------------- /PreDemo/MyHotKeyCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/MyHotKeyCtrl.h -------------------------------------------------------------------------------- /PreDemo/Page1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/Page1.cpp -------------------------------------------------------------------------------- /PreDemo/Page1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/Page1.h -------------------------------------------------------------------------------- /PreDemo/Page2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/Page2.cpp -------------------------------------------------------------------------------- /PreDemo/Page2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/Page2.h -------------------------------------------------------------------------------- /PreDemo/Page3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/Page3.cpp -------------------------------------------------------------------------------- /PreDemo/Page3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/Page3.h -------------------------------------------------------------------------------- /PreDemo/Page4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/Page4.cpp -------------------------------------------------------------------------------- /PreDemo/Page4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/Page4.h -------------------------------------------------------------------------------- /PreDemo/PreDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/PreDemo.cpp -------------------------------------------------------------------------------- /PreDemo/PreDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/PreDemo.h -------------------------------------------------------------------------------- /PreDemo/PreDemo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/PreDemo.rc -------------------------------------------------------------------------------- /PreDemo/PreDemo.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/PreDemo.vcproj -------------------------------------------------------------------------------- /PreDemo/PreDemo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/PreDemo.vcxproj -------------------------------------------------------------------------------- /PreDemo/PreDemo.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/PreDemo.vcxproj.filters -------------------------------------------------------------------------------- /PreDemo/PreDemoDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/PreDemoDlg.cpp -------------------------------------------------------------------------------- /PreDemo/PreDemoDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/PreDemoDlg.h -------------------------------------------------------------------------------- /PreDemo/TabPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/TabPage.cpp -------------------------------------------------------------------------------- /PreDemo/TabPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/TabPage.h -------------------------------------------------------------------------------- /PreDemo/ThreadProc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/ThreadProc.cpp -------------------------------------------------------------------------------- /PreDemo/ThreadProc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/ThreadProc.h -------------------------------------------------------------------------------- /PreDemo/bm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/bm.cpp -------------------------------------------------------------------------------- /PreDemo/bm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/bm.h -------------------------------------------------------------------------------- /PreDemo/km.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/km.cpp -------------------------------------------------------------------------------- /PreDemo/km.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/km.h -------------------------------------------------------------------------------- /PreDemo/mapLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/mapLine.cpp -------------------------------------------------------------------------------- /PreDemo/mapLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/mapLine.h -------------------------------------------------------------------------------- /PreDemo/res/PreDemo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/res/PreDemo.ico -------------------------------------------------------------------------------- /PreDemo/res/PreDemo.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/res/PreDemo.rc2 -------------------------------------------------------------------------------- /PreDemo/res/app.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/res/app.xml -------------------------------------------------------------------------------- /PreDemo/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/resource.h -------------------------------------------------------------------------------- /PreDemo/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/stdafx.cpp -------------------------------------------------------------------------------- /PreDemo/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/stdafx.h -------------------------------------------------------------------------------- /PreDemo/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/PreDemo/targetver.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/README.md -------------------------------------------------------------------------------- /Release/Background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/Release/Background.jpg -------------------------------------------------------------------------------- /Release/PreDemo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/Release/PreDemo.exe -------------------------------------------------------------------------------- /Release/PreDemo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/Release/PreDemo.ini -------------------------------------------------------------------------------- /Release/kmclass.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/Release/kmclass.sys -------------------------------------------------------------------------------- /kmclass Package/kmclass Package.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/kmclass Package/kmclass Package.vcxproj -------------------------------------------------------------------------------- /kmclass Package/kmclass Package.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/kmclass Package/kmclass Package.vcxproj.filters -------------------------------------------------------------------------------- /kmclass/VisualDDKHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/kmclass/VisualDDKHelpers.h -------------------------------------------------------------------------------- /kmclass/afxres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/kmclass/afxres.h -------------------------------------------------------------------------------- /kmclass/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/kmclass/common.h -------------------------------------------------------------------------------- /kmclass/kmclass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/kmclass/kmclass.cpp -------------------------------------------------------------------------------- /kmclass/kmclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/kmclass/kmclass.h -------------------------------------------------------------------------------- /kmclass/kmclass.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/kmclass/kmclass.inf -------------------------------------------------------------------------------- /kmclass/kmclass.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/kmclass/kmclass.rc -------------------------------------------------------------------------------- /kmclass/kmclass.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/kmclass/kmclass.vcxproj -------------------------------------------------------------------------------- /kmclass/kmclass.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/kmclass/kmclass.vcxproj.filters -------------------------------------------------------------------------------- /kmclass/kmclass.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/kmclass/kmclass.vcxproj.user -------------------------------------------------------------------------------- /kmclass/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/kmclass/resource.h -------------------------------------------------------------------------------- /kmclass/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/kmclass/stdafx.cpp -------------------------------------------------------------------------------- /kmclass/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/kmclass/stdafx.h -------------------------------------------------------------------------------- /kmclassdll/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/kmclassdll/ReadMe.txt -------------------------------------------------------------------------------- /kmclassdll/kmclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/kmclassdll/kmclass.h -------------------------------------------------------------------------------- /kmclassdll/kmclassdll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/kmclassdll/kmclassdll.cpp -------------------------------------------------------------------------------- /kmclassdll/kmclassdll.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/kmclassdll/kmclassdll.vcproj -------------------------------------------------------------------------------- /kmclassdll/kmclassdll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/kmclassdll/kmclassdll.vcxproj -------------------------------------------------------------------------------- /kmclassdll/kmclassdll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/kmclassdll/kmclassdll.vcxproj.filters -------------------------------------------------------------------------------- /kmclassdll/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/kmclassdll/stdafx.cpp -------------------------------------------------------------------------------- /kmclassdll/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/kmclassdll/stdafx.h -------------------------------------------------------------------------------- /pingme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snatshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/snatshot.png -------------------------------------------------------------------------------- /搜索KeyboardClassServiceCallback.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win_Driver_Mouse_And_Key/HEAD/搜索KeyboardClassServiceCallback.txt --------------------------------------------------------------------------------