Einstieg.cpp 148 B

123456789
  1. #include "Updater.h"
  2. extern "C"
  3. {
  4. __declspec(dllexport) UpdaterV* getUpdater(KSGClient::PatchServerClient* psc)
  5. {
  6. return new Updater(psc);
  7. }
  8. }