资源简介
以C++可视化为基础,通过可视化编程直观反映在整个数字通信中的ask调制
代码片段和文件信息
// ASK.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “ASK.h“
#include “ASKDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CASKApp
BEGIN_MESSAGE_MAP(CASKApp CWinApp)
//{{AFX_MSG_MAP(CASKApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CASKApp construction
CASKApp::CASKApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CASKApp object
CASKApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CASKApp initialization
BOOL CASKApp::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
CASKDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 42588 2010-07-13 08:49 最后的ASK\ASK.APS
文件 2558 2010-07-13 11:08 最后的ASK\ASK.clw
文件 2021 2010-07-05 23:09 最后的ASK\ASK.cpp
文件 4704 2010-07-12 21:25 最后的ASK\ASK.dsp
文件 512 2010-07-05 23:09 最后的ASK\ASK.dsw
文件 1291 2010-07-07 15:21 最后的ASK\ASK.h
文件 181248 2010-07-13 11:33 最后的ASK\ASK.ncb
文件 56832 2010-07-13 11:33 最后的ASK\ASK.opt
文件 861 2010-07-13 09:11 最后的ASK\ASK.plg
文件 7441 2010-07-13 08:49 最后的ASK\ASK.rc
文件 14467 2010-07-12 20:14 最后的ASK\ASKDlg.cpp
文件 1935 2010-07-12 08:55 最后的ASK\ASKDlg.h
文件 2182 2010-07-09 16:54 最后的ASK\CHUANGHANSHU.cpp
文件 1465 2010-07-09 16:53 最后的ASK\CHUANGHANSHU.h
文件 5407744 2010-07-13 08:46 最后的ASK\Debug\ASK.bsc
文件 131147 2010-07-13 09:11 最后的ASK\Debug\ASK.exe
文件 232412 2010-07-13 09:11 最后的ASK\Debug\ASK.ilk
文件 14192 2010-07-12 13:41 最后的ASK\Debug\ASK.obj
文件 7011660 2010-07-12 13:41 最后的ASK\Debug\ASK.pch
文件 443392 2010-07-13 09:11 最后的ASK\Debug\ASK.pdb
文件 6976 2010-07-13 09:11 最后的ASK\Debug\ASK.res
文件 0 2010-07-12 13:41 最后的ASK\Debug\ASK.sbr
文件 55767 2010-07-12 20:14 最后的ASK\Debug\ASKDlg.obj
文件 0 2010-07-12 20:14 最后的ASK\Debug\ASKDlg.sbr
文件 13626 2010-07-12 13:41 最后的ASK\Debug\CHUANGHANSHU.obj
文件 0 2010-07-12 13:41 最后的ASK\Debug\CHUANGHANSHU.sbr
文件 24949 2010-07-13 08:46 最后的ASK\Debug\SigTranmit.obj
文件 0 2010-07-13 08:46 最后的ASK\Debug\SigTranmit.sbr
文件 105831 2010-07-12 13:41 最后的ASK\Debug\StdAfx.obj
文件 1369764 2010-07-12 13:41 最后的ASK\Debug\StdAfx.sbr
............此处省略21个文件信息
- 上一篇:简单HTTP代理服务器-源码c++
- 下一篇:C语言操作netcdf的安装文件
评论
共有 条评论