On Freitag, 21. August 2009, Marius Storm-Olsen wrote:
-static __stdcall unsigned ticktack(void *dummy)
+static unsigned WINAPI ticktack(void *dummy)
-static __stdcall unsigned run_thread(void *data)
+static unsigned WINAPI run_thread(void *data)
These two are not nice. As I said in an earlier mail: The documentation says
that the thread function pointer that is passed to _beginthreadex must have
__stdcall calling convention. Therefore, you should not change these to
WINAPI.
-- Hannes