Thank you, that solved it nicely. It's not over yet though :( Here's the next new one: --- pocc.exe -I. -Ze -Go -W1 -Ot -Tarm-coff -D_M_ARM -D_WINCE -I../../../../../include -DUNICODE -Foolecore.obj -c ../../../olecore.c ../../../olecore.c(239): error #2152: Unknown field 'llVal' of 'union (no name)'. ../../../olecore.c(247): error #2152: Unknown field 'pllVal' of 'union (no name)'. ../../../olecore.c(247): error #2152: Unknown field 'llVal' of 'union (no name)'. ../../../olecore.c(247): error #2168: Operands of = have incompatible types 'int' and 'int *'. ../../../olecore.c(490): error #2152: Unknown field 'llVal' of 'union (no name)'. ../../../olecore.c(501): error #2152: Unknown field 'pllVal' of 'union (no name)'. ../../../olecore.c(501): error #2144: Type error: pointer expected. ../../../olecore.c(534): error #2152: Unknown field 'ullVal' of 'union (no name)'. ../../../olecore.c(546): error #2152: Unknown field 'pullVal' of 'union (no name)'. ../../../olecore.c(546): error #2144: Type error: pointer expected. mingw32-make.exe[3]: *** [olecore.obj] Error 1 ---
Brgds, Viktor On Fri, Aug 14, 2009 at 5:42 PM, Przemyslaw Czerpak<[email protected]> wrote: > 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 > _______________________________________________ Harbour mailing list [email protected] http://lists.harbour-project.org/mailman/listinfo/harbour
