summaryrefslogtreecommitdiff
path: root/KPL_Start.h
diff options
context:
space:
mode:
authorEric Anderson <ejona86@gmail.com>2009-05-01 17:14:46 -0500
committerEric Anderson <ejona86@gmail.com>2009-05-01 17:14:46 -0500
commit663d9336324110648ffdea7c7092a004353419b5 (patch)
treed35eccc38a36859bc317796a2058497ed9d8c382 /KPL_Start.h
downloadkpl-663d9336324110648ffdea7c7092a004353419b5.tar.gz
kpl-663d9336324110648ffdea7c7092a004353419b5.zip
Initial commit of source from zwzsg
Diffstat (limited to 'KPL_Start.h')
-rw-r--r--KPL_Start.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/KPL_Start.h b/KPL_Start.h
new file mode 100644
index 0000000..8c19a6f
--- /dev/null
+++ b/KPL_Start.h
@@ -0,0 +1,19 @@
+//---------------------------------------------------------------------------
+
+#ifndef KPL_StartH
+#define KPL_StartH
+#ifndef __declspec
+#define __declspec(x)
+#endif
+//---------------------------------------------------------------------------
+extern "C" __declspec(dllexport) int StartSpectator(void*);
+extern "C" __declspec(dllexport) int StartEasy(void*);
+extern "C" __declspec(dllexport) int StartMedium(void*);
+extern "C" __declspec(dllexport) int StartHard(void*);
+extern "C" __declspec(dllexport) int StartVeryHard(void*);
+extern "C" __declspec(dllexport) int StartMultiPlayer(void*);
+extern "C" __declspec(dllexport) int StartSettings(void*);
+extern "C" __declspec(dllexport) int LaunchSpringExecutable(int Difficulty);
+
+//---------------------------------------------------------------------------
+#endif