资源简介

前面没有给源码,这里补上了~

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “Compiler.h“
#include “CompilerDlg.h“

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

/////////////////////////////////////////////////////////////////////////////
// CCompilerApp

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

/////////////////////////////////////////////////////////////////////////////
// CCompilerApp construction

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

/////////////////////////////////////////////////////////////////////////////
// The one and only CCompilerApp object

CCompilerApp theApp;


/////////////////////////////////////////////////////////////////////////////
// CCompilerApp initialization

BOOL CCompilerApp::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

CCompilerDlg dlg;
m_pMainWnd = &dlg;
// m_pMainWnd->SetWindowText(“LL1 分析器 BY LIAO JUN“);
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;
}

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

     文件      24716  2008-01-09 21:56  LL1\Compiler\Compiler.aps

     文件       1804  2008-01-09 21:56  LL1\Compiler\Compiler.clw

     文件       2150  2008-01-05 12:02  LL1\Compiler\Compiler.cpp

     文件       4403  2008-01-05 19:52  LL1\Compiler\Compiler.dsp

     文件        522  2007-12-19 14:22  LL1\Compiler\Compiler.dsw

     文件     139318  2008-01-09 21:50  LL1\Compiler\Compiler.exe

     文件       1346  2007-12-19 14:06  LL1\Compiler\Compiler.h

     文件      82944  2008-01-09 21:56  LL1\Compiler\Compiler.ncb

     文件      57856  2008-01-09 21:56  LL1\Compiler\Compiler.opt

     文件        250  2008-01-09 21:56  LL1\Compiler\Compiler.plg

     文件       6922  2008-01-05 16:21  LL1\Compiler\Compiler.rc

     文件      25545  2008-01-09 21:50  LL1\Compiler\CompilerDlg.cpp

     文件       2987  2008-01-05 16:07  LL1\Compiler\CompilerDlg.h

     文件    3679232  2008-01-06 23:19  LL1\Compiler\Debug\Compiler.bsc

     文件     139318  2008-01-09 21:50  LL1\Compiler\Debug\Compiler.exe

     文件     359700  2008-01-09 21:50  LL1\Compiler\Debug\Compiler.ilk

     文件      16642  2008-01-05 16:13  LL1\Compiler\Debug\Compiler.obj

     文件    6883300  2008-01-04 22:24  LL1\Compiler\Debug\Compiler.pch

     文件     451584  2008-01-09 21:50  LL1\Compiler\Debug\Compiler.pdb

     文件       5620  2008-01-05 16:21  LL1\Compiler\Debug\Compiler.res

     文件          0  2008-01-05 16:13  LL1\Compiler\Debug\Compiler.sbr

     文件      87981  2008-01-09 21:50  LL1\Compiler\Debug\CompilerDlg.obj

     文件      16922  2008-01-09 21:50  LL1\Compiler\Debug\CompilerDlg.sbr

     文件     105479  2008-01-04 22:24  LL1\Compiler\Debug\StdAfx.obj

     文件    1374926  2008-01-04 22:24  LL1\Compiler\Debug\StdAfx.sbr

     文件     214016  2008-01-09 21:56  LL1\Compiler\Debug\vc60.idb

     文件     364544  2008-01-09 21:50  LL1\Compiler\Debug\vc60.pdb

     目录          0  2008-01-09 21:57  LL1\Compiler\Debug

     文件       3615  2007-12-19 14:06  LL1\Compiler\ReadMe.txt

     文件       1270  2008-01-02 23:52  LL1\Compiler\res\bitmap1.bmp

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

评论

共有 条评论