zeromq-src 0.3.6+4.3.5

Source code and logic to build ZeroMQ from source
Documentation
1
2
3
4
5
6
7
8
9
10
#include <winsock2.h>
#include <afunix.h>

int main() {
    // Use a type from winsock2.h: SOCKET
    SOCKET sock = INVALID_SOCKET;
    // Use a constant from afunix.h: AF_UNIX
    int family = AF_UNIX;
    return 0;
}