moved API functions to separate source file
[rocksndiamonds.git] / src / api.h
diff --git a/src/api.h b/src/api.h
new file mode 100644 (file)
index 0000000..7090b69
--- /dev/null
+++ b/src/api.h
@@ -0,0 +1,20 @@
+// ============================================================================
+// Rocks'n'Diamonds - McDuffin Strikes Back!
+// ----------------------------------------------------------------------------
+// (c) 1995-2022 by Artsoft Entertainment
+//                         Holger Schemel
+//                 info@artsoft.org
+//                 https://www.artsoft.org/
+// ----------------------------------------------------------------------------
+// api.h
+// ============================================================================
+
+#ifndef API_H
+#define API_H
+
+void ApiAddScoreAsThread(int, boolean, char *);
+void ApiGetScoreAsThread(int);
+void ApiRenamePlayerAsThread(void);
+void ApiResetUUIDAsThread(char *);
+
+#endif