wut/rpl/libnsysnet/exports.h
dimok789 37330b5046 - added gx2 aa 2x and 4 and some additional primitive and surface enums
- added some gx2 logical ORed enums as typdef enum does not allow OR operations without a cast in C++
- added AXQuit in sndcore2
- added OSGetTitleID in coreinit
- removed not existing functions from nsysnet and added inet_ntoa
2016-10-11 19:17:18 +02:00

44 lines
851 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);
/*
// Those are not in nsysnet.rpl - why are they linked o.O?
EXPORT(somemopt);
EXPORT(setsocketlasterr);
EXPORT(icmp_create_handle);
EXPORT(icmp_close_handle);
EXPORT(icmp_ping);
EXPORT(icmp_cancel);
EXPORT(icmp_last_code_type);
*/