00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef PSPNET_APCTL_H
00016 #define PSPNET_APCTL_H
00017
00018 #ifdef __cplusplus
00019 extern "C" {
00020 #endif
00021
00022 int sceNetApctlInit(int stackSize, int initPriority);
00023
00024 int sceNetApctlTerm(void);
00025
00026 int sceNetApctlGetInfo(int code, void *pInfo);
00027
00028
00029
00030
00031
00032
00033 int sceNetApctlConnect(int connIndex);
00034
00035 int sceNetApctlDisconnect(void);
00036
00037 int sceNetApctlGetState(int *pState);
00038
00039 #ifdef __cplusplus
00040 }
00041 #endif
00042
00043 #endif