while digging around i tryed some tricks:
void USteam_Functions::UE_RequestLobbyList()
{
SteamAPICall_t hSteamAPICall = 1;
}
this code compiles fine, but!
void USteam_Functions::UE_RequestLobbyList()
{
SteamAPICall_t hSteamAPICall = 1;//SteamMatchmaking()->RequestLobbyList();
SteamMatchmaking();
}
this one won’t with same error and it lead to SteamMatchmaking, seems like VS can’t find where’s function body of SteamMatchmaking, but steam_api.lib path already added, but i have to note it’s not the like link lib files normally, it’s only path added in includes, because “linker” folder doesn’t exist in “project properties” for any unknow reason (while in normal win32 app it exist)