资源简介
仿大华海康视频分屏,可实现各种样式的分隔 有需要的朋友可以下载 有什么建议可私信我
代码片段和文件信息
// Hermes.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “Hermes.h“
#include “HermesDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CHermesApp
BEGIN_MESSAGE_MAP(CHermesApp CWinApp)
//{{AFX_MSG_MAP(CHermesApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CHermesApp construction
CHermesApp::CHermesApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CHermesApp object
CHermesApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CHermesApp initialization
BOOL CHermesApp::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
int ret;
if (ret = CTCPSocket::Initialize())
{
TRACE(“Socket Initialization Error:0x%x“ ret);
}
CHermesDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 35856 2008-05-27 15:14 Hermes\Hermes.aps
文件 1681 2008-05-29 15:49 Hermes\Hermes.clw
文件 2173 2007-06-06 12:37 Hermes\Hermes.cpp
文件 4470 2007-06-06 14:03 Hermes\Hermes.dsp
文件 535 2007-06-06 12:09 Hermes\Hermes.dsw
文件 1346 2007-06-06 12:33 Hermes\Hermes.h
文件 99328 2008-05-29 15:49 Hermes\Hermes.ncb
文件 0 2007-06-06 15:31 Hermes\Hermes.ncb (Can‘t open)
文件 56832 2008-05-29 15:49 Hermes\Hermes.opt
文件 1823 2008-05-27 15:14 Hermes\Hermes.plg
文件 5842 2008-05-27 15:14 Hermes\Hermes.rc
文件 11608 2007-06-06 17:10 Hermes\HermesDlg.cpp
文件 2470 2007-06-06 17:08 Hermes\HermesDlg.h
文件 3579 2007-06-06 12:09 Hermes\ReadMe.txt
文件 1078 2007-06-06 12:09 Hermes\res\Hermes.ico
文件 398 2007-06-06 12:09 Hermes\res\Hermes.rc2
文件 776 2007-06-06 12:13 Hermes\resource.h
文件 208 2007-06-06 12:09 Hermes\StdAfx.cpp
文件 1054 2007-06-06 12:09 Hermes\StdAfx.h
文件 1902 2007-06-06 14:41 Hermes\TCPSocket.cpp
文件 882 2007-06-06 12:56 Hermes\TCPSocket.h
文件 3896 2008-05-29 15:49 Hermes\WaveBuffer.cpp
文件 1571 2008-05-29 15:49 Hermes\WaveBuffer.h
目录 0 2007-11-09 11:16 Hermes\res
目录 0 2008-06-30 11:48 Hermes
----------- --------- ---------- ----- ----
239308 25
- 上一篇:VC开发实现任务管理器
- 下一篇:vlan 报文抓包.pcap
评论
共有 条评论