I'm having problems compiling this small piece of code.
CODE
t_size tmp;
pm->activeplaylist_find_item(track, tmp);
if ( pm->activeplaylist_is_item_selected(tmp) ) { return false; }
pm->activeplaylist_find_item(track, tmp);
if ( pm->activeplaylist_is_item_selected(tmp) ) { return false; }
It returns the following error during compilation
CODE
1>foobar2000_sdk.lib(metadb_handle_list.obj) : error LNK2001: unresolved external symbol __imp__StrCmpLogicalW@8
1>fatal error LNK1120: 1 unresolved externals
1>fatal error LNK1120: 1 unresolved externals
Does anyone know what library should I manually add? :S
Thanks!