2020-04-28 14:43:07 +02:00
|
|
|
/* coreinit */
|
|
|
|
IMPORT_BEGIN(coreinit);
|
|
|
|
|
|
|
|
IMPORT(OSDynLoad_Acquire);
|
|
|
|
IMPORT(OSDynLoad_FindExport);
|
2020-12-26 13:18:47 +01:00
|
|
|
IMPORT(OSDynLoad_IsModuleLoaded);
|
2020-04-28 14:43:07 +02:00
|
|
|
IMPORT(DCFlushRange);
|
|
|
|
IMPORT(ICInvalidateRange);
|
|
|
|
IMPORT(OSGetSystemInfo);
|
2020-04-29 12:04:33 +02:00
|
|
|
IMPORT(MEMGetSizeForMBlockExpHeap);
|
2020-04-28 14:43:07 +02:00
|
|
|
IMPORT(OSSleepTicks);
|
2020-05-17 13:14:19 +02:00
|
|
|
IMPORT(OSEffectiveToPhysical);
|
2020-04-28 14:43:07 +02:00
|
|
|
IMPORT(OSFatal);
|
|
|
|
|
|
|
|
IMPORT_END();
|
|
|
|
|
|
|
|
/* nsysnet */
|
|
|
|
IMPORT_BEGIN(nsysnet);
|
|
|
|
|
|
|
|
IMPORT(socket_lib_init);
|
|
|
|
IMPORT(getaddrinfo);
|
|
|
|
IMPORT(freeaddrinfo);
|
|
|
|
IMPORT(getnameinfo);
|
|
|
|
IMPORT(inet_ntoa);
|
|
|
|
IMPORT(inet_ntop);
|
|
|
|
IMPORT(inet_aton);
|
|
|
|
IMPORT(inet_pton);
|
|
|
|
IMPORT(ntohl);
|
|
|
|
IMPORT(ntohs);
|
|
|
|
IMPORT(htonl);
|
|
|
|
IMPORT(htons);
|
|
|
|
IMPORT(accept);
|
|
|
|
IMPORT(bind);
|
|
|
|
IMPORT(socketclose);
|
|
|
|
IMPORT(connect);
|
|
|
|
IMPORT(getpeername);
|
|
|
|
IMPORT(getsockname);
|
|
|
|
IMPORT(getsockopt);
|
|
|
|
IMPORT(listen);
|
|
|
|
IMPORT(recv);
|
|
|
|
IMPORT(recvfrom);
|
|
|
|
IMPORT(send);
|
|
|
|
IMPORT(sendto);
|
|
|
|
IMPORT(setsockopt);
|
|
|
|
IMPORT(shutdown);
|
|
|
|
IMPORT(socket);
|
|
|
|
IMPORT(select);
|
|
|
|
IMPORT(socketlasterr);
|
|
|
|
|
|
|
|
IMPORT_END();
|