├── .gitignore ├── KillerKeyboard ├── Debug │ ├── KillerKeyboard.exe │ ├── KillerKeyboard.ilk │ └── KillerKeyboard.pdb ├── KillerKeyboard.sdf ├── KillerKeyboard.sln ├── KillerKeyboard.v11.suo └── KillerKeyboard │ ├── Debug │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── KillerKeyboard.lastbuildstate │ ├── KillerKeyboard.log │ ├── Main.obj │ ├── cl.command.1.tlog │ ├── link-cvtres.read.1.tlog │ ├── link-cvtres.write.1.tlog │ ├── link-rc.read.1.tlog │ ├── link-rc.write.1.tlog │ ├── link.18172-cvtres.read.1.tlog │ ├── link.18172-cvtres.write.1.tlog │ ├── link.18172-rc.read.1.tlog │ ├── link.18172-rc.write.1.tlog │ ├── link.18172.read.1.tlog │ ├── link.18172.write.1.tlog │ ├── link.18208-cvtres.read.1.tlog │ ├── link.18208-cvtres.write.1.tlog │ ├── link.18208-rc.read.1.tlog │ ├── link.18208-rc.write.1.tlog │ ├── link.18208.read.1.tlog │ ├── link.18208.write.1.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ ├── vc110.idb │ └── vc110.pdb │ ├── KillerKeyboard.vcxproj │ ├── KillerKeyboard.vcxproj.filters │ ├── Main.cpp │ └── Main.h └── README /.gitignore: -------------------------------------------------------------------------------- 1 | *.txt -------------------------------------------------------------------------------- /KillerKeyboard/Debug/KillerKeyboard.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harkphoenix/KeyBoardWriter/7ee1462423ff738db85c8a188f185ee6039b2947/KillerKeyboard/Debug/KillerKeyboard.exe -------------------------------------------------------------------------------- /KillerKeyboard/Debug/KillerKeyboard.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harkphoenix/KeyBoardWriter/7ee1462423ff738db85c8a188f185ee6039b2947/KillerKeyboard/Debug/KillerKeyboard.ilk -------------------------------------------------------------------------------- /KillerKeyboard/Debug/KillerKeyboard.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harkphoenix/KeyBoardWriter/7ee1462423ff738db85c8a188f185ee6039b2947/KillerKeyboard/Debug/KillerKeyboard.pdb -------------------------------------------------------------------------------- /KillerKeyboard/KillerKeyboard.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harkphoenix/KeyBoardWriter/7ee1462423ff738db85c8a188f185ee6039b2947/KillerKeyboard/KillerKeyboard.sdf -------------------------------------------------------------------------------- /KillerKeyboard/KillerKeyboard.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 2012 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "KillerKeyboard", "KillerKeyboard\KillerKeyboard.vcxproj", "{53404648-7028-4297-A0E6-871502BFF8CA}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Win32 = Debug|Win32 9 | Release|Win32 = Release|Win32 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {53404648-7028-4297-A0E6-871502BFF8CA}.Debug|Win32.ActiveCfg = Debug|Win32 13 | {53404648-7028-4297-A0E6-871502BFF8CA}.Debug|Win32.Build.0 = Debug|Win32 14 | {53404648-7028-4297-A0E6-871502BFF8CA}.Release|Win32.ActiveCfg = Release|Win32 15 | {53404648-7028-4297-A0E6-871502BFF8CA}.Release|Win32.Build.0 = Release|Win32 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /KillerKeyboard/KillerKeyboard.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harkphoenix/KeyBoardWriter/7ee1462423ff738db85c8a188f185ee6039b2947/KillerKeyboard/KillerKeyboard.v11.suo -------------------------------------------------------------------------------- /KillerKeyboard/KillerKeyboard/Debug/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harkphoenix/KeyBoardWriter/7ee1462423ff738db85c8a188f185ee6039b2947/KillerKeyboard/KillerKeyboard/Debug/CL.read.1.tlog -------------------------------------------------------------------------------- /KillerKeyboard/KillerKeyboard/Debug/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harkphoenix/KeyBoardWriter/7ee1462423ff738db85c8a188f185ee6039b2947/KillerKeyboard/KillerKeyboard/Debug/CL.write.1.tlog -------------------------------------------------------------------------------- /KillerKeyboard/KillerKeyboard/Debug/KillerKeyboard.lastbuildstate: -------------------------------------------------------------------------------- 1 | #v4.0:v110:false 2 | Debug|Win32|F:\recover\2014.7-2015.1\keyborad\KillerKeyboard\| 3 | -------------------------------------------------------------------------------- /KillerKeyboard/KillerKeyboard/Debug/KillerKeyboard.log: -------------------------------------------------------------------------------- 1 | 生成启动时间为 2014/9/15 21:24:16。 2 | 1>项目“F:\recover\2014.7-2015.1\keyborad\KillerKeyboard\KillerKeyboard\KillerKeyboard.vcxproj”在节点 2 上(Build 个目标)。 3 | 1>ClCompile: 4 | C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\bin\CL.exe /c /ZI /nologo /W3 /WX- /Od /Oy- /D WIN32 /D _DEBUG /D _CONSOLE /D _UNICODE /D UNICODE /Gm /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Fo"Debug\\" /Fd"Debug\vc110.pdb" /Gd /TP /analyze- /errorReport:prompt Main.cpp 5 | Main.cpp 6 | 1>f:\recover\2014.7-2015.1\keyborad\killerkeyboard\killerkeyboard\main.cpp(14): warning C4554: “&”: 检查运算符优先级可能存在的错误;使用圆括号阐明优先级 7 | Link: 8 | C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\bin\link.exe /ERRORREPORT:PROMPT /OUT:"F:\recover\2014.7-2015.1\keyborad\KillerKeyboard\Debug\KillerKeyboard.exe" /INCREMENTAL /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /DEBUG /PDB:"F:\recover\2014.7-2015.1\keyborad\KillerKeyboard\Debug\KillerKeyboard.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:"F:\recover\2014.7-2015.1\keyborad\KillerKeyboard\Debug\KillerKeyboard.lib" /MACHINE:X86 Debug\Main.obj 9 | KillerKeyboard.vcxproj -> F:\recover\2014.7-2015.1\keyborad\KillerKeyboard\Debug\KillerKeyboard.exe 10 | 1>已完成生成项目“F:\recover\2014.7-2015.1\keyborad\KillerKeyboard\KillerKeyboard\KillerKeyboard.vcxproj”(Build 个目标)的操作。 11 | 12 | 生成成功。 13 | 14 | 已用时间 00:00:04.36 15 | -------------------------------------------------------------------------------- /KillerKeyboard/KillerKeyboard/Debug/Main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harkphoenix/KeyBoardWriter/7ee1462423ff738db85c8a188f185ee6039b2947/KillerKeyboard/KillerKeyboard/Debug/Main.obj -------------------------------------------------------------------------------- /KillerKeyboard/KillerKeyboard/Debug/cl.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harkphoenix/KeyBoardWriter/7ee1462423ff738db85c8a188f185ee6039b2947/KillerKeyboard/KillerKeyboard/Debug/cl.command.1.tlog -------------------------------------------------------------------------------- /KillerKeyboard/KillerKeyboard/Debug/link-cvtres.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harkphoenix/KeyBoardWriter/7ee1462423ff738db85c8a188f185ee6039b2947/KillerKeyboard/KillerKeyboard/Debug/link-cvtres.read.1.tlog -------------------------------------------------------------------------------- /KillerKeyboard/KillerKeyboard/Debug/link-cvtres.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harkphoenix/KeyBoardWriter/7ee1462423ff738db85c8a188f185ee6039b2947/KillerKeyboard/KillerKeyboard/Debug/link-cvtres.write.1.tlog -------------------------------------------------------------------------------- /KillerKeyboard/KillerKeyboard/Debug/link-rc.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harkphoenix/KeyBoardWriter/7ee1462423ff738db85c8a188f185ee6039b2947/KillerKeyboard/KillerKeyboard/Debug/link-rc.read.1.tlog -------------------------------------------------------------------------------- /KillerKeyboard/KillerKeyboard/Debug/link-rc.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harkphoenix/KeyBoardWriter/7ee1462423ff738db85c8a188f185ee6039b2947/KillerKeyboard/KillerKeyboard/Debug/link-rc.write.1.tlog -------------------------------------------------------------------------------- /KillerKeyboard/KillerKeyboard/Debug/link.18172-cvtres.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harkphoenix/KeyBoardWriter/7ee1462423ff738db85c8a188f185ee6039b2947/KillerKeyboard/KillerKeyboard/Debug/link.18172-cvtres.read.1.tlog -------------------------------------------------------------------------------- /KillerKeyboard/KillerKeyboard/Debug/link.18172-cvtres.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harkphoenix/KeyBoardWriter/7ee1462423ff738db85c8a188f185ee6039b2947/KillerKeyboard/KillerKeyboard/Debug/link.18172-cvtres.write.1.tlog -------------------------------------------------------------------------------- /KillerKeyboard/KillerKeyboard/Debug/link.18172-rc.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harkphoenix/KeyBoardWriter/7ee1462423ff738db85c8a188f185ee6039b2947/KillerKeyboard/KillerKeyboard/Debug/link.18172-rc.read.1.tlog -------------------------------------------------------------------------------- /KillerKeyboard/KillerKeyboard/Debug/link.18172-rc.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harkphoenix/KeyBoardWriter/7ee1462423ff738db85c8a188f185ee6039b2947/KillerKeyboard/KillerKeyboard/Debug/link.18172-rc.write.1.tlog -------------------------------------------------------------------------------- /KillerKeyboard/KillerKeyboard/Debug/link.18172.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harkphoenix/KeyBoardWriter/7ee1462423ff738db85c8a188f185ee6039b2947/KillerKeyboard/KillerKeyboard/Debug/link.18172.read.1.tlog -------------------------------------------------------------------------------- /KillerKeyboard/KillerKeyboard/Debug/link.18172.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harkphoenix/KeyBoardWriter/7ee1462423ff738db85c8a188f185ee6039b2947/KillerKeyboard/KillerKeyboard/Debug/link.18172.write.1.tlog -------------------------------------------------------------------------------- /KillerKeyboard/KillerKeyboard/Debug/link.18208-cvtres.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harkphoenix/KeyBoardWriter/7ee1462423ff738db85c8a188f185ee6039b2947/KillerKeyboard/KillerKeyboard/Debug/link.18208-cvtres.read.1.tlog -------------------------------------------------------------------------------- /KillerKeyboard/KillerKeyboard/Debug/link.18208-cvtres.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harkphoenix/KeyBoardWriter/7ee1462423ff738db85c8a188f185ee6039b2947/KillerKeyboard/KillerKeyboard/Debug/link.18208-cvtres.write.1.tlog -------------------------------------------------------------------------------- /KillerKeyboard/KillerKeyboard/Debug/link.18208-rc.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harkphoenix/KeyBoardWriter/7ee1462423ff738db85c8a188f185ee6039b2947/KillerKeyboard/KillerKeyboard/Debug/link.18208-rc.read.1.tlog -------------------------------------------------------------------------------- /KillerKeyboard/KillerKeyboard/Debug/link.18208-rc.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harkphoenix/KeyBoardWriter/7ee1462423ff738db85c8a188f185ee6039b2947/KillerKeyboard/KillerKeyboard/Debug/link.18208-rc.write.1.tlog -------------------------------------------------------------------------------- /KillerKeyboard/KillerKeyboard/Debug/link.18208.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harkphoenix/KeyBoardWriter/7ee1462423ff738db85c8a188f185ee6039b2947/KillerKeyboard/KillerKeyboard/Debug/link.18208.read.1.tlog -------------------------------------------------------------------------------- /KillerKeyboard/KillerKeyboard/Debug/link.18208.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harkphoenix/KeyBoardWriter/7ee1462423ff738db85c8a188f185ee6039b2947/KillerKeyboard/KillerKeyboard/Debug/link.18208.write.1.tlog -------------------------------------------------------------------------------- /KillerKeyboard/KillerKeyboard/Debug/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harkphoenix/KeyBoardWriter/7ee1462423ff738db85c8a188f185ee6039b2947/KillerKeyboard/KillerKeyboard/Debug/link.command.1.tlog -------------------------------------------------------------------------------- /KillerKeyboard/KillerKeyboard/Debug/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harkphoenix/KeyBoardWriter/7ee1462423ff738db85c8a188f185ee6039b2947/KillerKeyboard/KillerKeyboard/Debug/link.read.1.tlog -------------------------------------------------------------------------------- /KillerKeyboard/KillerKeyboard/Debug/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harkphoenix/KeyBoardWriter/7ee1462423ff738db85c8a188f185ee6039b2947/KillerKeyboard/KillerKeyboard/Debug/link.write.1.tlog -------------------------------------------------------------------------------- /KillerKeyboard/KillerKeyboard/Debug/vc110.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harkphoenix/KeyBoardWriter/7ee1462423ff738db85c8a188f185ee6039b2947/KillerKeyboard/KillerKeyboard/Debug/vc110.idb -------------------------------------------------------------------------------- /KillerKeyboard/KillerKeyboard/Debug/vc110.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harkphoenix/KeyBoardWriter/7ee1462423ff738db85c8a188f185ee6039b2947/KillerKeyboard/KillerKeyboard/Debug/vc110.pdb -------------------------------------------------------------------------------- /KillerKeyboard/KillerKeyboard/KillerKeyboard.vcxproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | Win32 7 | 8 | 9 | Release 10 | Win32 11 | 12 | 13 | 14 | {53404648-7028-4297-A0E6-871502BFF8CA} 15 | Win32Proj 16 | KillerKeyboard 17 | 18 | 19 | 20 | Application 21 | true 22 | v110 23 | Unicode 24 | 25 | 26 | Application 27 | false 28 | v110 29 | true 30 | Unicode 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | true 44 | 45 | 46 | false 47 | 48 | 49 | 50 | 51 | 52 | Level3 53 | Disabled 54 | WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) 55 | 56 | 57 | Console 58 | true 59 | 60 | 61 | 62 | 63 | Level3 64 | 65 | 66 | MaxSpeed 67 | true 68 | true 69 | WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) 70 | 71 | 72 | Console 73 | true 74 | true 75 | true 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | -------------------------------------------------------------------------------- /KillerKeyboard/KillerKeyboard/KillerKeyboard.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | 18 | 19 | 源文件 20 | 21 | 22 | 23 | 24 | 头文件 25 | 26 | 27 | -------------------------------------------------------------------------------- /KillerKeyboard/KillerKeyboard/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harkphoenix/KeyBoardWriter/7ee1462423ff738db85c8a188f185ee6039b2947/KillerKeyboard/KillerKeyboard/Main.cpp -------------------------------------------------------------------------------- /KillerKeyboard/KillerKeyboard/Main.h: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | #include 5 | #include 6 | #include 7 | #include 8 | using namespace std; 9 | const int KeyBoardValue = 0x80000000; 10 | string GetKeyName(int); 11 | bool JudgeShift(); -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harkphoenix/KeyBoardWriter/7ee1462423ff738db85c8a188f185ee6039b2947/README --------------------------------------------------------------------------------