From 0ea5fc66924303d1bf73ba283a383e2aadee02f2 Mon Sep 17 00:00:00 2001 From: neodarz Date: Sat, 11 Aug 2018 20:21:34 +0200 Subject: Initial commit --- docs/doxygen/nel/thread_win32_h-source.html | 114 ++++++++++++++++++++++++++++ 1 file changed, 114 insertions(+) create mode 100644 docs/doxygen/nel/thread_win32_h-source.html (limited to 'docs/doxygen/nel/thread_win32_h-source.html') diff --git a/docs/doxygen/nel/thread_win32_h-source.html b/docs/doxygen/nel/thread_win32_h-source.html new file mode 100644 index 00000000..35bda666 --- /dev/null +++ b/docs/doxygen/nel/thread_win32_h-source.html @@ -0,0 +1,114 @@ + + + + nevrax.org : docs + + + + + + + + + + + + + + +
# Home   # nevrax.com   
+ + + + +
Nevrax
+ + + + + + + + + + +
+ + +
+ Nevrax.org
+ + + + + + + +
#News
#Mailing-list
#Documentation
#CVS
#Bugs
#License
+
+ + +
+ + +
+Docs + +
+  + + + + + +
Documentation 
+ +
+Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Related Pages   Search  
+

thread_win32.h

Go to the documentation of this file.
00001 /*
+00002         $Id: thread_win32.h,v 1.1 2000/10/19 07:53:33 corvazier Exp $
+00003 
+00004         ------------------------------------------------------------------------
+00005         ClanLib, the platform independent game SDK.
+00006 
+00007         This library is distributed under the GNU LIBRARY GENERAL PUBLIC LICENSE
+00008         version 2. See COPYING for details.
+00009 
+00010         For a total list of contributers see CREDITS.
+00011 
+00012         ------------------------------------------------------------------------
+00013 */
+00014 
+00015 #ifndef header_thread_win32
+00016 #define header_thread_win32
+00017 
+00018 #include "thread.h"
+00019 #include <windows.h>
+00020 
+00021 class CL_Thread_Win32 : public CL_Thread
+00022 {
+00023 public:
+00024         CL_Thread_Win32(CL_Runnable *runnable);
+00025         virtual ~CL_Thread_Win32();
+00026         
+00027         virtual void start();
+00028         virtual void terminate();
+00029         virtual void wait();
+00030 
+00031 private:
+00032         static unsigned long __stdcall func_proxy(void *arg);
+00033 
+00034         HANDLE thread_handle;
+00035         DWORD thread_id;
+00036         CL_Runnable *runnable;
+00037 };
+00038 
+00039 #endif
+00040 
+
+ + +
                                                                                                                                                                    +
+ + -- cgit v1.2.1