• 大小: 3.61MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-09-13
  • 语言: C/C++
  • 标签: vs2010,mfc  

资源简介

MFC编写的局域网视屏监控模块,vs2010可运行,包括服务端,和客户端

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “Client.h“
#include “ClientDlg.h“

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

/////////////////////////////////////////////////////////////////////////////
// CClientApp

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

/////////////////////////////////////////////////////////////////////////////
// CClientApp construction

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

/////////////////////////////////////////////////////////////////////////////
// The one and only CClientApp object

CClientApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CClientApp initialization

BOOL CClientApp::InitInstance()
{
AfxEnableControlContainer();
#ifdef _AFXDLL
Enable3dControls();
#else
Enable3dControlsStatic();
#endif

WSADATA data;
WORD ver = MAKEWORD(22);
WSAStartup(ver&data);

CClientDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{

}
else if (nResponse == IDCANCEL)
{

}
return FALSE;
}

int CClientApp::ExitInstance() 
{
WSACleanup();
return CWinApp::ExitInstance();
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      26816  2012-02-22 09:53  3\Client\Client.aps

     文件       1102  2012-02-22 09:53  3\Client\Client.clw

     文件       1600  2015-10-13 10:19  3\Client\Client.cpp

     文件       4240  2008-07-28 14:19  3\Client\Client.dsp

     文件        535  2007-12-17 18:10  3\Client\Client.dsw

     文件       1354  2007-12-18 11:19  3\Client\Client.h

     文件      74752  2012-02-22 09:53  3\Client\Client.ncb

     文件     656896  2012-02-22 09:53  3\Client\Client.opt

     文件       2366  2011-03-07 13:35  3\Client\Client.plg

     文件       5287  2008-07-28 15:46  3\Client\Client.rc

     文件        878  2015-09-28 13:56  3\Client\Client.sln

    ..A..H.     13824  2015-09-28 14:19  3\Client\Client.suo

     文件       7773  2015-09-28 13:56  3\Client\Client.vcxproj

     文件       2004  2015-09-28 13:56  3\Client\Client.vcxproj.filters

     文件        143  2015-09-28 13:56  3\Client\Client.vcxproj.user

     文件      11558  2015-10-13 11:26  3\Client\ClientDlg.cpp

     文件       2347  2015-10-13 10:52  3\Client\ClientDlg.h

     文件    1503232  2000-10-24 23:12  3\Client\GDI\gdiplus.dll

     文件       3434  2000-12-15 16:58  3\Client\GDI\GdiPlus.h

     文件     200480  2001-01-17 16:46  3\Client\GDI\GdiPlus.lib

     文件        857  2000-11-12 23:18  3\Client\GDI\GdiPlusbase.h

     文件      22331  2008-02-26 15:03  3\Client\GDI\GdiPlusBitmap.h

     文件      30802  2001-01-17 16:41  3\Client\GDI\GdiPlusBrush.h

     文件       1773  2000-11-12 23:18  3\Client\GDI\GdiPlusCachedBitmap.h

     文件       4328  2000-11-12 23:18  3\Client\GDI\GdiPlusColor.h

     文件       1750  2000-11-12 23:18  3\Client\GDI\GdiPlusColorMatrix.h

     文件      55921  2001-01-12 15:16  3\Client\GDI\GdiPlusEnums.h

     文件      87463  2001-01-12 15:16  3\Client\GDI\GdiPlusFlat.h

     文件       5981  2000-12-15 16:58  3\Client\GDI\GdiPlusFont.h

     文件       3401  2000-12-04 15:00  3\Client\GDI\GdiPlusFontCollection.h

............此处省略111个文件信息

评论

共有 条评论

相关资源