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 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html