Geschrieben von: / Posted by: dominique longbien at 16 April 2003 18:59:10:
Als Antwort auf: / In reply to: Re: Help nalimov implementation geschrieben von: / posted by: Benny Antonsson at 16 April 2003 16:04:47:
I did implement nalimov TB on Adam (not release yet),
And I have some difficulties with VS++6.0.
It seem to work fine in release mode, but in debug mode, when i compile it, it say that it can not link __beginthreadex and __endthreadex.
I never use these functions, so I look at the help file and found
function _beginthreadex and _endthreadex (same name but with only one _ at the beginning.) in process.h library. But inclusion of this one do not solve the problem.
Can anybody help me ?
Dominique
The problem could be that you don't use the Debug Multithread run-time library?
To set this, go to: Project...Settings...Settings For: Win32 Debug...Choose C/C++ And Category Code Generation and in the drop down list select Debug Multithreaded
Thank you it work. Now it is compiling also in release mode, with a warning
LINK : warning LNK4098: defaultlib "LIBCD" conflicts with use of other libs; use /NODEFAULTLIB:library
When i exclude all default library, it indicate some error.
What it this melting pot ??
Thank you for your help.