Unresolved External Symbols

Posts 1–5 of 5 · Page 1 of 1
Unresolved External Symbols
So yea, I'm compiling a project with a "mixed platform", (1 C++ (Win32) and 2 C#) the C++ one has a external static library, when I hit compile it says:
Unresolved External Symbol Blablabla
......
5 Unresolved External Symbols
But when I change the platform from mixed to Win32, it complies. Any idea?
You need to include the headers for the libs you're using.
Quote Originally Posted by freedompeace View Post
You need to include the headers for the libs you're using.
I did.
What are the specific symbols that cannot be found?
Quote Originally Posted by freedompeace View Post
What are the specific symbols that cannot be found?
They're of the steam sdk.
Look:
Code:
#ifdef VERSION_SAFE_STEAM_API_INTERFACES
S_API bool SteamAPI_InitSafe();
#else
S_API bool SteamAPI_Init();

S_API ISteamUser *SteamUser();
S_API ISteamFriends *SteamFriends();
S_API ISteamUtils *SteamUtils();
S_API ISteamMatchmaking *SteamMatchmaking();
S_API ISteamUserStats *SteamUserStats();
S_API ISteamApps *SteamApps();
S_API ISteamMatchmakingServers *SteamMatchmakingServers();
#endif // VERSION_SAFE_STEAM_API_INTERFACES
I found them on the hl2sdk.
Posts 1–5 of 5 · Page 1 of 1

Post a Reply

Tags for this Thread

None

Need help?