Hi pelle !
do you think it is possible to list all the functions inside a .lib ?
like I currently have some linking problems, and I dont wanna bother everyone each time I dont find the function.
I usually check on msdn.com and find the info, but sometimes I dont.
like those functions :
POLINK: error: Unresolved external symbol 'lstrlenW'.
POLINK: error: Unresolved external symbol 'strdup'.
POLINK: error: Unresolved external symbol '_tcsncpy'.
POLINK: error: Unresolved external symbol 'gethostname'.
POLINK: error: Unresolved external symbol 'gethostbyname'.
POLINK: error: Unresolved external symbol 'ShellExecuteExW'.
POLINK: error: Unresolved external symbol 'InternetOpenW'.
POLINK: error: Unresolved external symbol 'InternetCrackUrlW'.
POLINK: error: Unresolved external symbol 'InternetConnectW'.
POLINK: error: Unresolved external symbol 'HttpOpenRequestW'.
POLINK: error: Unresolved external symbol 'HttpSendRequestW'.
POLINK: error: Unresolved external symbol 'InternetReadFile'.
POLINK: error: Unresolved external symbol 'InternetCloseHandle'.
POLINK: error: Unresolved external symbol '_tcscpy'.
POLINK: error: Unresolved external symbol 'RasValidateEntryNameW'.
POLINK: error: Unresolved external symbol 'RasSetEntryPropertiesW'.
POLINK: error: Unresolved external symbol 'RasSetEntryDialParamsW'.
I checked the one about Internet stuff and tis said in the msdn that those functions should be in wininet.lib, though it doesn't link ...
and the Ras stuff should be in rasapi32.lib, though it seems it can't find it ...
BTW, how do I know a .lib is for arm or for x86 ?
thx again for your time !