Networking and SDK Plugin Code
cwgant
Posts: 16
Anyone have any luck opening a socket (QLocalSocket or QTcpSocket) with the SDK Qt implementation? I am using Visual Studio 2013 and the DAZ SDK with no problems with the exception of networking. Any time I try to use any Qt network resources, I get a ton of linker errors when I do a build.
Any ideas?
:blank:
Thanks!
Comments
I use QLocalServer/QLocalSocket to create a named pipe connection to another application. I believe you need to link with Ws2_32.lib (the Winsock library).
Here is my Additional Dependencies list:
dzcore.lib
QtCore4.lib
QtGui4.lib
Qt3Support4.lib
QtScript4.lib
QtNetwork4.lib
user32.lib
Ws2_32.lib
Sj
I am doing the exact same thing. I have a workaround for now with my issue. Thanks for the list of dependencies. I may be missing something there.
:ohh: