12345678910111213141516171819202122232425262728293031 |
- #ifndef Patcher_H
- #define Patcher_H
- #include <Update.h>
- #include <Thread.h>
- #include <Textfeld.h>
- #include <Knopf.h>
- #include <Thread.h>
- using namespace Framework;
- class Patcher : public virtual ReferenceCounter
- {
- private:
- HMODULE updateDll;
- UpdaterV *updater;
- bool läuft;
- public:
- // Konstruktor
- Patcher();
- // Destruktor
- ~Patcher();
- // nicht constant
- bool update( int dateiGruppe, bool *abbruch, FBalken *fortschritt, TextFeld *status, Text *zError );
- // constant
- bool läuftPatch() const;
- int getDownload() const;
- };
- #endif
|