On Fri, 14 Aug 2009, Szak�ts Viktor wrote:
> I think this is a new one:
[...]
> POLINK: error: Unresolved external symbol '_beginthreadex'.
> POLINK: error: Unresolved external symbol '_endthreadex'.

It's possible because MT support for WinCE was disabled.
Look at HB_THREAD_RAWWINAPI in include/hbthread.h and change:

   #  if defined( HB_OS_WIN_CE ) && \
         ( defined( __MINGW32CE__ ) && !defined( __MSVCRT__ ) )
   #     define HB_THREAD_RAWWINAPI
   #  endif

to:

   #  if defined( HB_OS_WIN_CE ) && \
         ( ( defined( __MINGW32CE__ ) && !defined( __MSVCRT__ ) ) || \
           defined( __POCC__ ) )
   #     define HB_THREAD_RAWWINAPI
   #  endif

It should help.

best regards,
Przemek
_______________________________________________
Harbour mailing list
[email protected]
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to