yogaplay.cpp
来自「Cracker终结者——提供最优秀的软件保护技术」· C++ 代码 · 共 57 行
CPP
57 行
//////////////////////////////////////////////////////////////////////////////
// YogaPlay.cpp
//
// Yoga MPEG Audio Player
//
// 09/11/1999 fOSSiL Initial version
//
#include "stdafx.h"
#include "YogaPlay.h"
#include "YogaPlayDlg.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CYogaPlayApp
BEGIN_MESSAGE_MAP(CYogaPlayApp, CWinApp)
//{{AFX_MSG_MAP(CYogaPlayApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CYogaPlayApp construction
CYogaPlayApp::CYogaPlayApp()
{
// TODO: add construction code here,
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CYogaPlayApp object
CYogaPlayApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CYogaPlayApp initialization
BOOL CYogaPlayApp::InitInstance()
{
// 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.
CYogaPlayDlg dlg;
dlg.DoModal();
return FALSE;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?