资源简介
鼠标自动点击程序
代码片段和文件信息
// 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 Hyperli
文件 4241 2004-03-18 19:05 Hyperli
文件 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
- 上一篇:rgb hsv颜色转化识别软件
- 下一篇:localtime文件
相关资源
- CNFIX3.0.rar
- CMatrix
- 批量处理图片大小
- Proteus8.9 仿真STM32407ZGT6系列基础模板
- GDI+柱状图
- 使用ZLIB库压缩解压源码支持多级文件
- 制作动画GIF的VC源代码,八叉树算法生
- 面向对象程序设计实验报告
- 进程状态转换包括创建、删除、调度
- 经典的背包问题九讲,必看
- 模拟退火算法解决TSP问题
- 操作系统设计一个按优先权调度算法
- 驱动执行应用层代码之KeuserModeCallba
- 虚拟磁盘MINIPORT驱动代码
- 最新的libssh2库源码
- 模拟IPINTERNET PROTOCOL数据分片和重组
- 火车车厢重排列问题 堆栈解决
- 山东大学数据结构课设箱子装箱问题
- som神经网络用于实现图像压缩
- 一种新的GEP 解码方法及其应用程序及
- 信息学奥赛一本通课后练习答案汇总
- 操作系统实验生产者与消费者实验报
- windows rpc基本使用Demo
- 基于QT实现2048小游戏
- Linux下基于原始套接字的嗅探器
- 二维多边形布尔运算,包括多边形绘
- 学生管理系统 根据数据结构的链表知
- StdAfx.h
- VC使用jmail.dll编写电子邮件发送和接受
- qt串口通信,实现发送和接收
评论
共有 条评论