mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 15:51:52 +01:00
36 lines
668 B
C
36 lines
668 B
C
// nsysnet/socket.h
|
|
EXPORT(socket_lib_init);
|
|
EXPORT(socket_lib_finish);
|
|
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);
|
|
EXPORT(socketlasterr);
|