summaryrefslogtreecommitdiffstats
path: root/libtdemid/tests/apitest.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-12-06 21:23:48 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-12-06 21:24:20 +0900
commit4f99f868f09bbffa2e15733b8b7c78eba07a199e (patch)
tree3fb0957e93160f69f55942fff50a2ad496bf4f4c /libtdemid/tests/apitest.cpp
parent19f44e5ff3756172540e768fc0d08d761f0c374e (diff)
downloadtdelibs-4f99f868f09bbffa2e15733b8b7c78eba07a199e.tar.gz
tdelibs-4f99f868f09bbffa2e15733b8b7c78eba07a199e.zip
Renaming of files in preparation for code style tools.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'libtdemid/tests/apitest.cpp')
-rw-r--r--libtdemid/tests/apitest.cpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/libtdemid/tests/apitest.cpp b/libtdemid/tests/apitest.cpp
new file mode 100644
index 000000000..7f370331e
--- /dev/null
+++ b/libtdemid/tests/apitest.cpp
@@ -0,0 +1,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;
+};
+