wut/rpl/nsysnet/exports.h
James Benton 8af0ffe9c7 Move wut to using CMake instead of Makefiles.
The old makefile solution will still be around on branch "make".
2017-03-23 12:18:02 +00:00

34 lines
618 B
C

// nsysnet/socket.h
EXPORT(socket_lib_init);
EXPORT(socket);
EXPORT(socketclose);
EXPORT(connect);
EXPORT(bind);
EXPORT(listen);
EXPORT(accept);
EXPORT(send);
EXPORT(recv);
EXPORT(sendto);
EXPORT(setsockopt);
EXPORT(recvfrom);
EXPORT(recvfrom_ex);
EXPORT(recvfrom_multi);
EXPORT(sendto_multi);
EXPORT(sendto_multi_ex);
EXPORT(shutdown);
EXPORT(inet_aton);
EXPORT(inet_ntoa);
EXPORT(inet_ntoa_r);
EXPORT(inet_ntop);
EXPORT(inet_pton);
EXPORT(getpeername);
EXPORT(getsockname);
EXPORT(getsockopt);
EXPORT(select);
EXPORT(setsocklibopt);
EXPORT(getsocklibopt);
EXPORT(ntohl);
EXPORT(htonl);
EXPORT(ntohs);
EXPORT(htons);