1 /*---------------------------------------------------------------------------*
2   Project:  RevolutionSDK Extensions - Network base library
3   File:     net.h
4 
5   Copyright (C)2006 Nintendo  All Rights Reserved.
6 
7   These coded instructions, statements, and computer programs contain
8   proprietary information of Nintendo of America Inc. and/or Nintendo
9   Company Ltd., and are protected by Federal copyright law.  They may
10   not be disclosed to third parties or copied or duplicated in any form,
11   in whole or in part, without the prior written consent of Nintendo.
12 
13   $NoKeywords: $
14  *---------------------------------------------------------------------------*/
15 
16 /*---------------------------------------------------------------------------*
17     Header file for network base API.
18  *---------------------------------------------------------------------------*/
19 
20 #ifndef __NET_H__
21 #define __NET_H__
22 
23 #include <revolution/net/NETErrorCode.h>
24 #include <revolution/net/NETDigest.h>
25 #include <revolution/net/NETCrypto.h>
26 #include <revolution/net/NETMisc.h>
27 
28 #ifdef RVL_OS
29 #include <revolution/os.h>
30 #endif // RVL_OS
31 
32 #ifdef __cplusplus
33 extern "C" {
34 #endif
35 /*---------------------------------------------------------------------------*/
36 
37 /*---------------------------------------------------------------------------*/
38 #ifdef __cplusplus
39 }
40 #endif
41 
42 #endif // __NET_H__
43 
44