mirror of
https://github.com/ZDoom/ZMusic.git
synced 2024-11-15 00:41:36 +00:00
15 lines
231 B
C++
15 lines
231 B
C++
#include <stdio.h>
|
|
#include <zmusic.h>
|
|
|
|
int main()
|
|
{
|
|
int count = 0;
|
|
const MidiOutDevice *devices = ZMusic_GetMidiDevices(&count);
|
|
|
|
for (int i = 0; i < count; ++i)
|
|
{
|
|
printf("[%i] %s\n", i, devices[i].Name);
|
|
}
|
|
|
|
return 0;
|
|
}
|