You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a client application is built with "stdcall" calling convention and links with ZMQ it gets "unresolved external symbols" errors (at least in Visual Studio)
The problem can be solved by providing explicit "cdecl" specification in all external ZMQ functions prototypes in "zmq.h"
(actually, that's the way the problem is solved in our stdcall-compiled project - by manual editing "zmq.h")
The text was updated successfully, but these errors were encountered:
If a client application is built with "stdcall" calling convention and links with ZMQ it gets "unresolved external symbols" errors (at least in Visual Studio)
The problem can be solved by providing explicit "cdecl" specification in all external ZMQ functions prototypes in "zmq.h"
(actually, that's the way the problem is solved in our stdcall-compiled project - by manual editing "zmq.h")
The text was updated successfully, but these errors were encountered: