pspsdk-1.0+beta2
psputility_netmodules.h
Go to the documentation of this file.
1 /*
2  * PSP Software Development Kit - http://www.pspdev.org
3  * -----------------------------------------------------------------------
4  * Licensed under the BSD license, see LICENSE in PSPSDK root for details.
5  *
6  * psputility_netmodules.h - Load network modules from user mode on 2.xx+
7  *
8  * Copyright (c) 2005 John Kelley <ps2dev@kelley.ca>
9  *
10  * $Id: psputility_netmodules.h 2002 2006-09-16 16:49:57Z jim $
11  */
12 #ifndef __PSPUTILITY_NETMODULES_H__
13 #define __PSPUTILITY_NETMODULES_H__
14 
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
18 
19 #include <psptypes.h>
20 
21 #define PSP_NET_MODULE_COMMON 1
22 #define PSP_NET_MODULE_ADHOC 2
23 #define PSP_NET_MODULE_INET 3
24 #define PSP_NET_MODULE_PARSEURI 4
25 #define PSP_NET_MODULE_PARSEHTTP 5
26 #define PSP_NET_MODULE_HTTP 6
27 #define PSP_NET_MODULE_SSL 7
28 
38 int sceUtilityLoadNetModule(int module);
39 
47 int sceUtilityUnloadNetModule(int module);
48 
49 #ifdef __cplusplus
50 }
51 #endif
52 
53 #endif