资源简介

这是我做的播放器,功能简单,代码我也尽自己的努力,写得简明易懂,希望对有需要的有帮助。这个让我学到,一些最基本的VC开发知识。

资源截图

代码片段和文件信息

// 音乐播放器.cpp : Defines the entry point for the application.
//

#include “stdafx.h“
#include “resource.h“
#include “MainDlg.h“
#include 

int APIENTRY WinMain(HINSTANCE hInstance
                     HINSTANCE hPrevInstance
                     LPSTR     lpCmdLine
                     int       nCmdShow)
{
//Enable IPAddress、Calendar.etc
InitCommonControls();
DialogBox(hInstance MAKEINTRESOURCE(IDD_MAIN) NULL Main_Proc);
return 0;
}




评论

共有 条评论