• 大小: 518KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-06-03
  • 语言: 其他
  • 标签:

资源简介

鼠标连点器,可以设置时间间隔时间,可以点击热键开始,热键结束,代码详细说明,采用静态库,在其他电脑上可以使用

资源截图

代码片段和文件信息

// mouse.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “mouse.h“
#include “mouseDlg.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CMouseApp

BEGIN_MESSAGE_MAP(CMouseApp CWinApp)
//{{AFX_MSG_MAP(CMouseApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CMouseApp construction

CMouseApp::CMouseApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CMouseApp object

CMouseApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CMouseApp initialization

BOOL CMouseApp::InitInstance()
{
AfxEnableControlContainer();

// Standard initialization
// If you are not using these features and wish to reduce the size
//  of your final executable you should remove from the following
//  the specific initialization routines you do not need.

#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif

CMouseDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with Cancel
}

// Since the dialog has been closed return FALSE so that we exit the
//  application rather than start the application‘s message pump.
return FALSE;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2011-05-14 00:08  mouse\
     目录           0  2011-05-14 11:31  mouse\Debug\
     文件     2117681  2011-05-14 00:07  mouse\Debug\mouse.exe
     文件       35728  2011-05-14 00:07  mouse\mouse.aps
     文件        1261  2011-05-14 00:07  mouse\mouse.clw
     文件        2049  2011-05-13 23:23  mouse\mouse.cpp
     文件        4037  2011-05-13 23:23  mouse\mouse.dsp
     文件         533  2011-05-13 23:23  mouse\mouse.dsw
     文件        1313  2011-05-13 23:23  mouse\mouse.h
     文件       41984  2011-05-14 00:08  mouse\mouse.ncb
     文件       49664  2011-05-14 00:08  mouse\mouse.opt
     文件         644  2011-05-14 00:07  mouse\mouse.plg
     文件        5688  2011-05-14 00:07  mouse\mouse.rc
     文件        5281  2011-05-13 23:32  mouse\mouseDlg.cpp
     文件        1475  2011-05-13 23:28  mouse\mouseDlg.h
     文件        3561  2011-05-13 23:23  mouse\ReadMe.txt
     目录           0  2011-05-14 00:06  mouse\res\
     文件         729  2011-05-13 23:28  mouse\resource.h
     文件        1078  2011-05-14 00:06  mouse\res\mouse.ico
     文件         397  2011-05-13 23:23  mouse\res\mouse.rc2
     文件        3072  2011-05-13 23:47  mouse\res\Thumbs.db
     文件         207  2011-05-13 23:23  mouse\StdAfx.cpp
     文件        1054  2011-05-13 23:23  mouse\StdAfx.h

评论

共有 条评论

相关资源