12345678910111213141516171819202122232425262728293031323334353637 |
- #include "Spiel.h"
- #include "SpielStatistik.h"
- #include "HistorieStatistik.h"
- #include "../../../../Klient/Include/AufzeichnungV.h"
- #include "Editor.h"
- //#include "..\Aufzeichnung\Aufzeichnung.h"
- extern "C"
- { // Dll Einstiegs Funktionen
- __declspec( dllexport ) SpielV *getSpielKlasse()
- {
- return new Spiel();
- }
- __declspec( dllexport ) SpielStatistikV *GetStatistikKlasse()
- {
- return new SpielStatistik();
- }
- __declspec( dllexport ) AccountHistorieStatistikV *GetAccountHistorieStatistik()
- {
- return 0;
- //return new HistorieStatistik();
- }
- __declspec( dllexport ) AufzeichnungV *GetAufzeichnung()
- {
- return 0;
- //return new Aufzeichnung();
- }
- __declspec( dllexport ) EditorV *getEditor()
- {
- return 0;
- //return new Editor::SMWEditor();
- }
- }
|