vs2022 如何自己做一个easyx模板,今天手把手教你们
先把源码给大家:
(视频讲解如何制作模板)
#include<graphics.h>
#include<conio.h>
#include<mmsystem.h>//包含多媒体设备接口头文件
#pragma comment(lib,"winmm.lib")//加载静态库
#define WIN_W 640
#define WIN_H 480
void BGM()
{
//打开音乐
mciSendString("open ./bgm.mp3", 0, 0, 0);//mci:多媒体设备接口 send:发送 string:字符串
//播放音乐 repeat:重复播放
mciSendStr