Code: Select all
/**
* Load a network module (PRX) from user mode
* Load PSP_NET_MODULE_COMMON and PSP_NET_MODULE_INET
* to use infrastructure WifI (via an access point)
*
* @param module - module number to load (PSP_NET_MODULE_xxx)
* @return 0 on success, < 0 on error
*/
int sceUtilityLoadNetModule(int module);
/**
* Unload a network module (PRX) from user mode
*
* @param module - module number be unloaded
* @return 0 on success, < 0 on error
*/
int sceUtilityUnloadNetModule(int module);
Diff here: http://www.megaupload.com/?d=P6HUYRWJ
More details regarding those functions here and here. Credit and thanks to Chris Swindle and Fanjita.
- mbf