⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ppcplayerapp.cpp

📁 PPC流行的播放软件gsplayer源码2.24版
💻 CPP
字号:
#include "GSPlayer2.h"
#include "PpcPlayerApp.h"
#include "PpcMainWnd.h"

CPlayerApp* GetPlayerAppClass()
{
	return new CPpcPlayerApp();
}

CPpcPlayerApp::CPpcPlayerApp()
{
	INITCOMMONCONTROLSEX iccex;
    iccex.dwSize = sizeof(INITCOMMONCONTROLSEX);
    iccex.dwICC = ICC_BAR_CLASSES | ICC_COOL_CLASSES;
    InitCommonControlsEx(&iccex);
}

CPpcPlayerApp::~CPpcPlayerApp()
{
}

CMainWnd* CPpcPlayerApp::GetMainWndClass()
{
	return new CPpcMainWnd();
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -