1 /*---------------------------------------------------------------------------* 2 Project: RevolutionDWC public include file 3 File: ./dwc.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 *---------------------------------------------------------------------------*/ 14 15 #ifndef DWC_H_ 16 #define DWC_H_ 17 18 // Version information 19 #include <dwc_version.h> 20 21 // Platform-dependent code 22 #include <nonport/dwc_nonport.h> 23 24 // Account-related 25 #include <account/dwc_account.h> 26 27 // Common modules 28 #include <common/dwc_base64.h> 29 #include <common/dwc_error.h> 30 #include <common/dwc_init.h> 31 #include <common/dwc_memfunc.h> 32 #include <common/dwc_report.h> 33 34 // NAS-related 35 #include <nas/dwc_nas.h> 36 #include <svl/dwc_svl.h> 37 #include <prof/dwc_prof.h> 38 39 // HTTP-related 40 #include <ghttp/dwc_ghttp.h> 41 42 // LAN match-related 43 #include <lanmatch/dwc_lanmatch.h> 44 45 // Matchmaking-related 46 #include <match/dwc_core.h> 47 #include <match/dwc_common.h> 48 49 // Ranking-related 50 #include <ranking/dwc_ranking.h> 51 52 // Download-related 53 #include <nd/dwc_nd.h> 54 55 #endif // DWC_H_ 56