资源简介
自己学习编写的主机扫描程序。MFC下,利用ICMP协议实现,代码简单。采用多线程编程,执行速度较快。
代码片段和文件信息
// Scan.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “Scan.h“
#include “ScanDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CScanApp
BEGIN_MESSAGE_MAP(CScanApp CWinApp)
//{{AFX_MSG_MAP(CScanApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CScanApp construction
CScanApp::CScanApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CScanApp object
CScanApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CScanApp initialization
BOOL CScanApp::InitInstance()
{
if (!AfxSocketInit())
{
AfxMessageBox(“加载套接字库失败!“);
return FALSE;
}
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
CScanDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3543 2009-03-21 11:55 Scan\ReadMe.txt
文件 1078 2009-03-21 11:55 Scan\res\Scan.ico
文件 396 2009-03-21 11:55 Scan\res\Scan.rc2
文件 912 2009-03-29 15:44 Scan\resource.h
文件 36212 2009-03-29 15:50 Scan\Scan.aps
文件 1378 2009-03-29 16:13 Scan\Scan.clw
文件 2127 2009-03-22 11:38 Scan\Scan.cpp
文件 4124 2009-03-23 12:13 Scan\Scan.dsp
文件 533 2009-03-21 11:55 Scan\Scan.dsw
文件 1302 2009-03-21 11:55 Scan\Scan.h
文件 66560 2009-03-29 16:15 Scan\Scan.ncb
文件 49664 2009-03-29 16:15 Scan\Scan.opt
文件 1139 2009-03-29 16:14 Scan\Scan.plg
文件 5876 2009-03-29 15:50 Scan\Scan.rc
文件 9087 2009-03-29 16:14 Scan\ScanDlg.cpp
文件 1749 2009-03-29 15:44 Scan\ScanDlg.h
文件 206 2009-03-21 11:55 Scan\StdAfx.cpp
文件 2709 2009-03-22 11:30 Scan\StdAfx.h
目录 0 2009-03-23 20:29 Scan\res
目录 0 2009-03-29 16:15 Scan
----------- --------- ---------- ----- ----
188595 20
相关资源
- 在线考试系统VC (MFC)
- 图形学集成程序dda、中点算法、多边
- MFC透明表
- mfc聊天室
- DSP 语音识别程序 DTW MFCC
- 树状导航菜单的制作
- MFC串口通信
- MFC的学生管理系统
- API实现ping测试源码通信测试_API测试源
- 低级鼠标钩子VS源码、攻略及成品
- 基于RFID的公交卡管理系统
- VC编写的ICMP木马源代码
- 依据ICMP协议实现网络工具ping,并将时
- 学生成绩档案管理系统—保证可用
- 自己做的串口调试工具、包含源代码
- 按键控制系统音量
- 基于SOCKECT的TCP的通信
- 二维图形的裁剪
- 远程控制开源代码
- 答题卡识别小程序
- gnss时间转化
- 基于VS2008的可视化时钟
- 图像处理源代码
- DM码的识别
- 最完整的qq参赛作品
- 鼠标手势MouseGesture-1.0.0.2
- 获取文件和文件夹属性
- 单文档多视图与相互切换
- 基于Wince5.0的通讯录
- opencv stitching拼接
评论
共有 条评论