00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #ifndef __PSPUTILITY_NETMODULES_H__
00013 #define __PSPUTILITY_NETMODULES_H__
00014
00015 #ifdef __cplusplus
00016 extern "C" {
00017 #endif
00018
00019 #include <psptypes.h>
00020
00021 #define PSP_NET_MODULE_COMMON 1
00022 #define PSP_NET_MODULE_ADHOC 2
00023 #define PSP_NET_MODULE_INET 3
00024 #define PSP_NET_MODULE_PARSEURI 4
00025 #define PSP_NET_MODULE_PARSEHTTP 5
00026 #define PSP_NET_MODULE_HTTP 6
00027 #define PSP_NET_MODULE_SSL 7
00028
00038 int sceUtilityLoadNetModule(int module);
00039
00047 int sceUtilityUnloadNetModule(int module);
00048
00049 #ifdef __cplusplus
00050 }
00051 #endif
00052
00053 #endif