Can this Toolkit linking nightmare be solved?
For any project using these convert functions like itoa I get LNK2019 unresolved external symbol __imp_itoa referenced in ...my programs.obj So far the only solution I have found is not to use the functions gcvt, _ftoa, itoa, etc. Thats hardly realistic.
I have stdlib.h included in the program. My project settings for linker include the following.
protk_dll_nu.lib
ucore.lib
udata.lib
kernel32.lib
user32.lib
gdi32.lib
winspool.lib
comdlg32.lib
advapi32.lib
shell32.lib
ole32.lib
oleaut32.lib
uuid.lib
odbc32.lib
odbccp32.lib
ws2_32.lib
mpr.lib
netapi32.lib
psapi.lib
I have several Toolkit programs that do not contain these functions that do number to string type conversions, and they seem to compile/link and run fine as DLL's.
Does anyone have any advice to offer? I have literally spent DAYS looking into this!

