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

资源简介

鼠标自动点击程序

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “AutoClicker.h“
#include “AutoClickerDlg.h“

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

/////////////////////////////////////////////////////////////////////////////
// CAutoClickerApp

BEGIN_MESSAGE_MAP(CAutoClickerApp CWinApp)
//{{AFX_MSG_MAP(CAutoClickerApp)
// 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()

/////////////////////////////////////////////////////////////////////////////
// CAutoClickerApp construction

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

/////////////////////////////////////////////////////////////////////////////
// The one and only CAutoClickerApp object

CAutoClickerApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CAutoClickerApp initialization

BOOL CAutoClickerApp::InitInstance()
{
// 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

CAutoClickerDlg 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;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件       42236  2007-07-26 20:37  AutoClicker.aps
     文件        3198  2007-07-26 20:38  AutoClicker.clw
     文件        2100  2007-07-23 18:22  AutoClicker.cpp
     文件        4380  2007-07-25 20:26  AutoClicker.dsp
     文件         545  2007-07-23 18:22  AutoClicker.dsw
     文件        1379  2007-07-23 18:22  AutoClicker.h
     文件       66560  2007-07-26 20:38  AutoClicker.ncb
     文件       54784  2007-07-26 20:38  AutoClicker.opt
     文件        1831  2007-07-26 20:37  AutoClicker.plg
     文件        8667  2007-07-26 20:37  AutoClicker.rc
     文件       13544  2007-07-25 18:04  AutoClickerDlg.cpp
     文件        2165  2007-07-25 17:41  AutoClickerDlg.h
     文件      139326  2007-07-25 18:21  Debug\AutoClicker.exe
     文件       17438  2004-03-18 19:17  Hyperlink.cpp
     文件        4241  2004-03-18 19:05  Hyperlink.h
     文件        3669  2007-07-23 18:22  ReadMe.txt
     文件       40960  2007-07-26 20:37  Release\AutoClicker.exe
     文件        1333  2007-07-25 17:33  resource.h
     文件        5430  2007-07-25 18:06  res\AutoClicker.ico
     文件         403  2007-07-23 18:22  res\AutoClicker.rc2
     文件         213  2007-07-23 18:22  StdAfx.cpp
     文件         999  2007-07-23 18:22  StdAfx.h

评论

共有 条评论