資源簡(jiǎn)介
里面有HOOK 功能,記錄鍵盤鼠標(biāo)操作,還可以記錄組合鍵,然后模擬操作。還有調(diào)到cmd 執(zhí)行命令行,殺死進(jìn)程,獲取和修改分辨率,為了讓程序適應(yīng)各種大小顯示器的電腦。
代碼片段和文件信息
//?hmouse.cpp?:?定義應(yīng)用程序的類行為。
//
#include?“stdafx.h“
#include?“hmouse.h“
#include?“hmouseDlg.h“
#ifdef?_DEBUG
#define?new?DEBUG_NEW
#endif
//?ChmouseApp
BEGIN_MESSAGE_MAP(ChmouseApp?CWinApp)
ON_COMMAND(ID_HELP?&CWinApp::onhelp)
END_MESSAGE_MAP()
//?ChmouseApp?構(gòu)造
ChmouseApp::ChmouseApp()
{
//?TODO:?在此處添加構(gòu)造代碼,
//?將所有重要的初始化放置在?InitInstance?中
}
//?唯一的一個(gè)?ChmouseApp?對(duì)象
ChmouseApp?theApp;
//?ChmouseApp?初始化
BOOL?ChmouseApp::InitInstance()
{
//?如果一個(gè)運(yùn)行在?Windows?XP?上的應(yīng)用程序清單指定要
//?使用?ComCtl32.dll?版本?6?或更高版本來(lái)啟用可視化方式,
//則需要?InitCommonControlsEx()。否則,將無(wú)法創(chuàng)建窗口。
INITCOMMONCONTROLSEX?InitCtrls;
InitCtrls.dwSize?=?sizeof(InitCtrls);
//?將它設(shè)置為包括所有要在應(yīng)用程序中使用的
//?公共控件類。
InitCtrls.dwICC?=?ICC_WIN95_CLASSES;
InitCommonControlsEx(&InitCtrls);
CWinApp::InitInstance();
AfxEnableControlContainer();
//?標(biāo)準(zhǔn)初始化
//?如果未使用這些功能并希望減小
//?最終可執(zhí)行文件的大小,則應(yīng)移除下列
//?不需要的特定初始化例程
//?更改用于存儲(chǔ)設(shè)置的注冊(cè)表項(xiàng)
//?TODO:?應(yīng)適當(dāng)修改該字符串,
//?例如修改為公司或組織名
SetRegistryKey(_T(“應(yīng)用程序向?qū)傻谋镜貞?yīng)用程序“));
ChmouseDlg?dlg;
m_pMainWnd?=?&dlg;
INT_PTR?nResponse?=?dlg.DoModal();
if?(nResponse?==?IDOK)
{
//?TODO:?在此放置處理何時(shí)用
//??“確定”來(lái)關(guān)閉對(duì)話框的代碼
}
else?if?(nResponse?==?IDCANCEL)
{
//?TODO:?在此放置處理何時(shí)用
//??“取消”來(lái)關(guān)閉對(duì)話框的代碼
}
//?由于對(duì)話框已關(guān)閉,所以將返回?FALSE?以便退出應(yīng)用程序,
//??而不是啟動(dòng)應(yīng)用程序的消息泵。
return?FALSE;
}
?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----
?????文件???????2873??2012-03-13?18:39??hmouse\ReadMe.txt
?????文件???????1647??2012-03-13?18:39??hmouse\hmouse.cpp
?????文件????????441??2012-03-13?18:39??hmouse\hmouse.h
?????文件???????5472??2012-03-17?21:41??hmouse\hmouse.vcproj
?????文件???????1425??2012-03-24?19:53??hmouse\hmouse.vcproj.2012-0224-1032.Administrator.user
?????文件???????1413??2012-10-11?15:43??hmouse\hmouse.vcproj.G-CHENYJ.Administrator.user
?????文件??????16723??2014-07-07?15:19??hmouse\hmouseDlg.cpp
?????文件???????1223??2014-07-07?14:02??hmouse\hmouseDlg.h
?????文件??????15286??2014-07-07?14:48??hmouse\record.txt
????.......?????21630??2003-07-24?09:52??hmouse\res\hmouse.ico
?????文件????????362??2012-03-13?18:39??hmouse\res\hmouse.rc2
?????文件????????137??2012-03-13?18:39??hmouse\stdafx.cpp
?????文件???????1814??2012-03-17?20:31??hmouse\stdafx.h
?????文件???????1030??2012-03-13?18:39??hmouse\targetver.h
?????文件???????6802??2014-06-30?09:30??hmouse\hmouse.vcxproj
?????文件???????2032??2014-06-17?10:55??hmouse\hmouse.vcxproj.filters
?????文件???????1039??2014-06-27?13:46??hmouse\resource.h
?????文件??????????0??2014-07-07?14:34??hmouse\record1.txt
?????文件??????????0??2014-07-07?14:34??hmouse\record2.txt
?????文件??????????0??2014-07-07?14:37??hmouse\record22.txt
?????文件???????3007??2014-07-07?15:20??hmouse\record.ini
?????文件???????5714??2014-07-07?15:21??hmouse\hmouse.rc
?????文件??????44800??2014-07-07?15:22??hmouse\hmouse.aps
?????文件???????1207??2014-06-17?11:02??hmouse.sln
????..A..H.?????58880??2012-10-11?15:43??hmouse.suo
????..A..H.?????67584??2014-07-07?15:33??hmouse.v11.suo
?????目錄??????????0??2012-03-13?18:39??hmouse\res
?????目錄??????????0??2012-10-16?18:27??hmouse
-----------?---------??----------?-----??----
???????????????262541????????????????????28
............此處省略1個(gè)文件信息
評(píng)論
共有 條評(píng)論