瀏覽代碼

add missing DLLEXPORT to Thread methods

Kolja Strohm 1 年之前
父節點
當前提交
a6e77dae21
共有 1 個文件被更改,包括 3 次插入3 次删除
  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();