mirror of
https://github.com/wiiu-env/wut.git
synced 2025-01-07 10:58:13 +01:00
37330b5046
- 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
44 lines
851 B
C
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);
|
|
*/
|