Browse Source

add missing DLLEXPORT to Thread methods

Kolja Strohm 1 year ago
parent
commit
a6e77dae21
1 changed files with 3 additions and 3 deletions
  1. 3 3
      Thread.h

+ 3 - 3
Thread.h

@@ -57,13 +57,13 @@ namespace Framework
         //! gesetzt wird, falls die Ressourcen des Threads bereits follstänfig
         //! aufgeräumt wurden \param ths Ein Zeiger auf ein Threadhandle, das
         //! verändert werden soll
-        void setSystemHandlePointer(pthread_t* ths);
+        DLLEXPORT void setSystemHandlePointer(pthread_t* ths);
         //! Gibt ein Handle auf den Thread zurück
         DLLEXPORT pthread_t getThreadHandle() const;
         // set the name of the thread
-        void setName(const char* name);
+        DLLEXPORT void setName(const char* name);
         // get the name of the thread
-        const char* getName() const;
+        DLLEXPORT const char* getName() const;
 
     private:
         void addCriticalLock();