You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
512 B
26 lines
512 B
12 years ago
|
#include <libtdemid/libtdemid.h>
|
||
15 years ago
|
#include <unistd.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int main (int , char **)
|
||
|
{
|
||
12 years ago
|
printf("Libtdemid test2 . (C) 2000 Antonio Larrosa Jimenez . Malaga (Spain)\n");
|
||
|
printf("Using libtdemid from a simple C++ application\n");
|
||
15 years ago
|
|
||
|
KMidSimpleAPI::kMidInit();
|
||
|
KMidSimpleAPI::kMidLoad("Kathzy.mid");
|
||
|
KMidSimpleAPI::kMidPlay();
|
||
|
|
||
|
for (int i=0;i<30;i++)
|
||
|
{
|
||
|
printf("%d/30 seconds\n",i+1);
|
||
|
sleep(1);
|
||
|
};
|
||
|
|
||
|
KMidSimpleAPI::kMidStop();
|
||
|
KMidSimpleAPI::kMidDestruct();
|
||
|
|
||
|
return 0;
|
||
|
};
|
||
|
|