s2s-k

Results 4 comments of s2s-k

> You can try with this vcpkg patch I applied this patch, GNS compiled statically, but my project compiles with errors of unresolved external symbols. ``` error LNK2019: unresolved external...

Okay, I solved this problem with a macro. ```cpp #define STEAMNETWORKINGSOCKETS_STATIC_LINK ``` But now there are the same errors in libcrypto.lib. ``` error LNK2019: unresolved external symbol __imp_DeregisterEventSource referenced in...

I did it. Thank you for your patch. The problem I wrote about above is solved by using additional Windows API libraries. ```cpp #pragma comment(lib, "Advapi32.lib") #pragma comment(lib, "User32.lib") #pragma...

Also a little warning, for those who will be switching to the static version. If you call `GameNetworkingSocket_Init` in the global object constructor, it may crash during static linking when...