summaryrefslogtreecommitdiffstats
path: root/libtdemid/tests/apitest.cc
blob: 7f370331ef062d4463b21b90b178545584ef32bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include <libtdemid/libtdemid.h>
#include <unistd.h>
#include <stdio.h>

int main (int , char **)
{
  printf("Libtdemid test2 . (C) 2000 Antonio Larrosa Jimenez . Malaga (Spain)\n");
  printf("Using libtdemid from a simple C++ application\n");

  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;
};