Einstieg.cpp 752 B

123456789101112131415161718192021222324252627282930313233343536
  1. #include "KSGScriptObj.h"
  2. #include "../Editor/Editor.h"
  3. #include "../Befehl/KSGSKlasse.h"
  4. #include "../Klassen/KSGSBild.h"
  5. using namespace KSGScript;
  6. extern "C"
  7. {
  8. __declspec( dllexport ) KSGScriptObj *GetNewKSGScriptObj()
  9. {
  10. return new KSGScriptO();
  11. }
  12. __declspec( dllexport ) KSGScriptEditor *GetNewKSGEditorObj()
  13. {
  14. return new Editor();
  15. }
  16. __declspec( dllexport ) KSGSVariable *GetNewKSGSVariable( KSGScriptObj *zObj, KSGSVariableDef *def )
  17. {
  18. return KSGSKlasseInstanz::erstellVariable( zObj, def );
  19. }
  20. __declspec( dllexport ) void SetKSGSBildVariable( KSGSVariable *zBv, Bild *b )
  21. {
  22. if( !b )
  23. return;
  24. if( zBv->getTyp() != KSGS_BILD )
  25. {
  26. b->release();
  27. return;
  28. }
  29. ( (KSGSBildKlasse*)zBv )->set( b );
  30. }
  31. }