unresolved external symbol __imp_stricmp-Collection of common programming errors
Hi Carl,
Welcome here.
Do you use “stricmp” in your the function: apr_proc_create? Maybe what you needed is _stricmp; you can see further: http://msdn.microsoft.com/en-us/library/k59z8dwe.aspx .
The “__imp_” is the added as declaration in front of the function, when you use __declspec(dllimport) in your Dynamic Link Library. See more here: http://social.msdn.microsoft.com/Forums/en-us/vcgeneral/thread/729089a0-a8c5-4a6b-b246-206ec95d377b
So in your function try to add an underline in front of “stricmp”.
Have a nice day.
Regards,