
#include <windows.h>
#include <mmsystem.h>
#pragma comment(lib, "winmm.lib")
void main() {
mciSendString("play test.mp3 from 0", NULL, 0, 0);
while(! GetAsyncKeyState(VK_ESCAPE)) ;
}
#include <windows.h>
#include "WndImgCtx.h"
void main() {
HBITMAP hbmp = GetBitmapFromFile("test.png");
}
などと使えます。