• 大小: 1.38MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-11-11
  • 语言: C/C++
  • 标签: 连连看  代码  

资源简介

连连看资源·自己写的···························································

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “LLK.h“

#include “MainFrm.h“
#include “LLKDoc.h“
#include “LLKView.h“

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

/////////////////////////////////////////////////////////////////////////////
// CLLKApp

BEGIN_MESSAGE_MAP(CLLKApp CWinApp)
//{{AFX_MSG_MAP(CLLKApp)
ON_COMMAND(ID_APP_ABOUT OnAppAbout)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG_MAP
// Standard file based document commands
ON_COMMAND(ID_FILE_NEW CWinApp::OnFileNew)
ON_COMMAND(ID_FILE_OPEN CWinApp::OnFileOpen)
// Standard print setup command
ON_COMMAND(ID_FILE_PRINT_SETUP CWinApp::OnFilePrintSetup)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CLLKApp construction

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

/////////////////////////////////////////////////////////////////////////////
// The one and only CLLKApp object

CLLKApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CLLKApp initialization

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

// Change the registry key under which our settings are stored.
// TODO: You should modify this string to be something appropriate
// such as the name of your company or organization.
SetRegistryKey(_T(“Local AppWizard-Generated Applications“));

LoadStdProfileSettings();  // Load standard INI file options (including MRU)

// Register the application‘s document templates.  Document templates
//  serve as the connection between documents frame windows and views.

CSingleDocTemplate* pDocTemplate;
pDocTemplate = new CSingleDocTemplate(
IDR_MAINframe
RUNTIME_CLASS(CLLKDoc)
RUNTIME_CLASS(CMainframe)       // main SDI frame window
RUNTIME_CLASS(CLLKView));
AddDocTemplate(pDocTemplate);

// Parse command line for standard shell commands DDE file open
CCommandLineInfo cmdInfo;
ParseCommandLine(cmdInfo);

// Dispatch commands specified on the command line
if (!ProcessShellCommand(cmdInfo))
return FALSE;

// The one and only window has been initialized so show and update it.
m_pMainWnd->ShowWindow(SW_SHOW);
m_pMainWnd->UpdateWindow();

return TRUE;
}


/////////////////////////////////////////

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

     文件      54934  2010-06-28 22:37  LLK\3Dframes.bmp

     文件     386622  2010-06-28 22:37  LLK\animal.bmp

     文件    1097831  2010-06-28 22:41  LLK\Debug\LLK.exe

     文件     846168  2010-06-28 22:39  LLK\LLK.APS

     文件       2217  2010-06-28 22:38  LLK\LLK.clw

     文件       4155  2010-06-28 22:38  LLK\LLK.cpp

     文件       4687  2010-06-28 22:39  LLK\LLK.dsp

     文件        531  2010-06-28 22:38  LLK\LLK.dsw

     文件       1323  2010-06-28 22:38  LLK\LLK.h

     文件     148480  2010-06-28 22:43  LLK\LLK.ncb

     文件      50688  2010-06-28 22:43  LLK\LLK.opt

     文件       1886  2010-06-28 22:41  LLK\LLK.plg

     文件      11775  2010-06-28 22:38  LLK\LLK.rc

     文件       1682  2010-06-28 22:38  LLK\LLKDoc.cpp

     文件       1442  2010-06-28 22:38  LLK\LLKDoc.h

     文件       5787  2010-06-28 22:39  LLK\LLKView.cpp

     文件       2117  2010-06-28 22:38  LLK\LLKView.h

     文件       2504  2010-06-28 22:38  LLK\MainFrm.cpp

     文件       1581  2010-06-28 22:38  LLK\MainFrm.h

     文件      21394  2010-06-28 22:38  LLK\RCa03612

     文件      21394  2010-06-28 22:38  LLK\RCa03988

     文件      21394  2010-06-28 22:38  LLK\RCb03612

     文件      21394  2010-06-28 22:38  LLK\RCc03612

     文件       4239  2010-06-28 22:38  LLK\ReadMe.txt

     文件       1078  2010-06-28 22:39  LLK\res\LLK.ico

     文件        395  2010-06-28 22:39  LLK\res\LLK.rc2

     文件       1078  2010-06-28 22:39  LLK\res\LLKDoc.ico

    ..A..H.      6656  2010-06-28 22:39  LLK\res\Thumbs.db

     文件       1078  2010-06-28 22:39  LLK\res\Toolbar.bmp

    ..A..H.     60928  2010-06-28 22:39  LLK\res\图片\Thumbs.db

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

评论

共有 条评论