summaryrefslogtreecommitdiff
path: root/src/thread.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/thread.h')
-rw-r--r--src/thread.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/thread.h b/src/thread.h
index 837222a..33435e6 100644
--- a/src/thread.h
+++ b/src/thread.h
@@ -24,10 +24,10 @@
* along with DrumGizmo; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
*/
-#ifndef __DRUMGIZMO_THREAD_H__
-#define __DRUMGIZMO_THREAD_H__
+#pragma once
#ifdef WIN32
+#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#else
#include <pthread.h>
@@ -41,14 +41,16 @@ public:
void run();
void wait_stop();
+protected:
virtual void thread_main() = 0;
private:
#ifdef WIN32
- HANDLE tid;
+ HANDLE tid{nullptr};
+ static DWORD WINAPI
#else
- pthread_t tid;
+ pthread_t tid{0};
+ static void*
#endif/*WIN32*/
+ thread_run(void *data);
};
-
-#endif/*__DRUMGIZMO_THREAD_H__*/