├── ClickRun.sln ├── ClickRun ├── ClickRun.vcxproj ├── ClickRun.vcxproj.filters ├── ClickRun.vcxproj.user ├── Debug │ ├── ClickRun.Build.CppClean.log │ ├── ClickRun.log │ └── ClickRun.vcxproj.FileListAbsolute.txt ├── Release │ ├── ClickRun.Build.CppClean.log │ ├── ClickRun.log │ └── ClickRun.vcxproj.FileListAbsolute.txt ├── t.c └── x64 │ ├── Debug │ ├── ClickRun.Build.CppClean.log │ ├── ClickRun.log │ └── ClickRun.vcxproj.FileListAbsolute.txt │ └── Release │ ├── ClickRun.Build.CppClean.log │ ├── ClickRun.log │ └── ClickRun.vcxproj.FileListAbsolute.txt ├── README.md ├── View.png └── _config.yml /ClickRun.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.28307.271 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ClickRun", "ClickRun\ClickRun.vcxproj", "{C4FFFBC7-82AD-48F2-8B03-B210CA9224A8}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|x64 = Debug|x64 11 | Debug|x86 = Debug|x86 12 | Release|x64 = Release|x64 13 | Release|x86 = Release|x86 14 | EndGlobalSection 15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 | {C4FFFBC7-82AD-48F2-8B03-B210CA9224A8}.Debug|x64.ActiveCfg = Debug|x64 17 | {C4FFFBC7-82AD-48F2-8B03-B210CA9224A8}.Debug|x64.Build.0 = Debug|x64 18 | {C4FFFBC7-82AD-48F2-8B03-B210CA9224A8}.Debug|x86.ActiveCfg = Debug|Win32 19 | {C4FFFBC7-82AD-48F2-8B03-B210CA9224A8}.Debug|x86.Build.0 = Debug|Win32 20 | {C4FFFBC7-82AD-48F2-8B03-B210CA9224A8}.Release|x64.ActiveCfg = Release|x64 21 | {C4FFFBC7-82AD-48F2-8B03-B210CA9224A8}.Release|x64.Build.0 = Release|x64 22 | {C4FFFBC7-82AD-48F2-8B03-B210CA9224A8}.Release|x86.ActiveCfg = Release|Win32 23 | {C4FFFBC7-82AD-48F2-8B03-B210CA9224A8}.Release|x86.Build.0 = Release|Win32 24 | EndGlobalSection 25 | GlobalSection(SolutionProperties) = preSolution 26 | HideSolutionNode = FALSE 27 | EndGlobalSection 28 | GlobalSection(ExtensibilityGlobals) = postSolution 29 | SolutionGuid = {E0935251-55F7-4FFA-B051-C0CB5C14FB5D} 30 | EndGlobalSection 31 | EndGlobal 32 | -------------------------------------------------------------------------------- /ClickRun/ClickRun.vcxproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Debug 6 | Win32 7 | 8 | 9 | Release 10 | Win32 11 | 12 | 13 | Debug 14 | x64 15 | 16 | 17 | Release 18 | x64 19 | 20 | 21 | 22 | 15.0 23 | {C4FFFBC7-82AD-48F2-8B03-B210CA9224A8} 24 | Win32Proj 25 | ClickRun 26 | 10.0 27 | 28 | 29 | 30 | Application 31 | true 32 | v142 33 | Unicode 34 | 35 | 36 | Application 37 | false 38 | v142 39 | true 40 | Unicode 41 | 42 | 43 | Application 44 | true 45 | v142 46 | Unicode 47 | 48 | 49 | Application 50 | false 51 | v142 52 | true 53 | Unicode 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | true 75 | 76 | 77 | true 78 | 79 | 80 | false 81 | 82 | 83 | false 84 | 85 | 86 | 87 | Level3 88 | Disabled 89 | WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) 90 | true 91 | 92 | 93 | true 94 | Windows 95 | 96 | 97 | 98 | 99 | Level3 100 | Disabled 101 | _DEBUG;_WINDOWS;%(PreprocessorDefinitions) 102 | true 103 | 104 | 105 | true 106 | Windows 107 | 108 | 109 | 110 | 111 | Level3 112 | MaxSpeed 113 | true 114 | true 115 | WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) 116 | true 117 | 118 | 119 | true 120 | true 121 | true 122 | Windows 123 | 124 | 125 | 126 | 127 | Level3 128 | MaxSpeed 129 | true 130 | true 131 | NDEBUG;_WINDOWS;%(PreprocessorDefinitions) 132 | true 133 | 134 | 135 | true 136 | true 137 | true 138 | Windows 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | -------------------------------------------------------------------------------- /ClickRun/ClickRun.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;hh;hpp;hxx;hm;inl;inc;ipp;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 | -------------------------------------------------------------------------------- /ClickRun/ClickRun.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /ClickRun/Debug/ClickRun.Build.CppClean.log: -------------------------------------------------------------------------------- 1 | d:\code trunk\clickrun\clickrun\debug\vc142.pdb 2 | d:\code trunk\clickrun\clickrun\debug\vc142.idb 3 | d:\code trunk\clickrun\clickrun\debug\t.obj 4 | d:\code trunk\clickrun\debug\clickrun.exe 5 | d:\code trunk\clickrun\debug\clickrun.ilk 6 | d:\code trunk\clickrun\debug\clickrun.pdb 7 | d:\code trunk\clickrun\clickrun\debug\clickrun.tlog\cl.command.1.tlog 8 | d:\code trunk\clickrun\clickrun\debug\clickrun.tlog\cl.read.1.tlog 9 | d:\code trunk\clickrun\clickrun\debug\clickrun.tlog\cl.write.1.tlog 10 | d:\code trunk\clickrun\clickrun\debug\clickrun.tlog\link.command.1.tlog 11 | d:\code trunk\clickrun\clickrun\debug\clickrun.tlog\link.read.1.tlog 12 | d:\code trunk\clickrun\clickrun\debug\clickrun.tlog\link.write.1.tlog 13 | -------------------------------------------------------------------------------- /ClickRun/Debug/ClickRun.log: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /ClickRun/Debug/ClickRun.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InJeCTrL/ClickRun/19328587c4b60c9f42bddb694988e923572a1ecc/ClickRun/Debug/ClickRun.vcxproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /ClickRun/Release/ClickRun.Build.CppClean.log: -------------------------------------------------------------------------------- 1 | d:\code trunk\clickrun\clickrun\release\vc142.pdb 2 | d:\code trunk\clickrun\clickrun\release\t.obj 3 | d:\code trunk\clickrun\release\clickrun.ipdb 4 | d:\code trunk\clickrun\release\clickrun.iobj 5 | d:\code trunk\clickrun\release\clickrun.exe 6 | d:\code trunk\clickrun\release\clickrun.pdb 7 | d:\code trunk\clickrun\clickrun\release\clickrun.tlog\cl.command.1.tlog 8 | d:\code trunk\clickrun\clickrun\release\clickrun.tlog\cl.read.1.tlog 9 | d:\code trunk\clickrun\clickrun\release\clickrun.tlog\cl.write.1.tlog 10 | d:\code trunk\clickrun\clickrun\release\clickrun.tlog\clickrun.write.1u.tlog 11 | d:\code trunk\clickrun\clickrun\release\clickrun.tlog\link.command.1.tlog 12 | d:\code trunk\clickrun\clickrun\release\clickrun.tlog\link.read.1.tlog 13 | d:\code trunk\clickrun\clickrun\release\clickrun.tlog\link.write.1.tlog 14 | -------------------------------------------------------------------------------- /ClickRun/Release/ClickRun.log: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /ClickRun/Release/ClickRun.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InJeCTrL/ClickRun/19328587c4b60c9f42bddb694988e923572a1ecc/ClickRun/Release/ClickRun.vcxproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /ClickRun/t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InJeCTrL/ClickRun/19328587c4b60c9f42bddb694988e923572a1ecc/ClickRun/t.c -------------------------------------------------------------------------------- /ClickRun/x64/Debug/ClickRun.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InJeCTrL/ClickRun/19328587c4b60c9f42bddb694988e923572a1ecc/ClickRun/x64/Debug/ClickRun.Build.CppClean.log -------------------------------------------------------------------------------- /ClickRun/x64/Debug/ClickRun.log: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /ClickRun/x64/Debug/ClickRun.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InJeCTrL/ClickRun/19328587c4b60c9f42bddb694988e923572a1ecc/ClickRun/x64/Debug/ClickRun.vcxproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /ClickRun/x64/Release/ClickRun.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InJeCTrL/ClickRun/19328587c4b60c9f42bddb694988e923572a1ecc/ClickRun/x64/Release/ClickRun.Build.CppClean.log -------------------------------------------------------------------------------- /ClickRun/x64/Release/ClickRun.log: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /ClickRun/x64/Release/ClickRun.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InJeCTrL/ClickRun/19328587c4b60c9f42bddb694988e923572a1ecc/ClickRun/x64/Release/ClickRun.vcxproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ClickRun 2 | 3 | > 简单的鼠标连点器 4 | 5 | ## 下载 6 | 7 | [X86](https://github.com/InJeCTrL/ClickRun/releases/download/1.0/x86.zip) 8 | 9 | [X64](https://github.com/InJeCTrL/ClickRun/releases/download/1.0/x64.zip) 10 | 11 | ## 说明 12 | 13 | ![Preview](./View.png) 14 | 15 | - [x] 连点鼠标左键、右键 16 | 17 | - [x] SendInput与mouse_event两种API实现模拟点击 18 | 19 | - [x] 可选F1~F12作为连点启停热键 20 | 21 | - [x] 程序启动时尝试读取历史配置信息,锁定当前配置后记录本次配置信息到注册表 22 | 23 | - [x] 自定义两次点击的时间间隔 -------------------------------------------------------------------------------- /View.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InJeCTrL/ClickRun/19328587c4b60c9f42bddb694988e923572a1ecc/View.png -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-leap-day 2 | show_downloads: true --------------------------------------------------------------------------------