1 /*---------------------------------------------------------------------------*
2   Project:  RevolutionDWC Demos
3   File:     ./common/include/d_net_connect.h
4 
5   Copyright 2005-2008 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 #ifndef	__D_NET_CONNECT_H__
14 #define	__D_NET_CONNECT_H__
15 
16 #ifdef	__cplusplus
17 extern "C"
18 {
19 #endif	// __cplusplus
20 
21 #include <revolution/types.h>
22 
23     BOOL dNetConnect_Start();
24     void dNetConnect_Finish();
25 
26 #ifdef	__cplusplus
27 }
28 #endif	// __cplusplus
29 #endif	/* __D_NET_CONNECT_H__ end */
30 
31