1 /*---------------------------------------------------------------------------*
2 
3   Copyright (C) 2012 Nintendo. All rights reserved.
4 
5   These coded instructions, statements, and computer programs contain
6   proprietary information of Nintendo of America Inc. and/or Nintendo
7   Company Ltd., and are protected by Federal copyright law.  They may
8   not be disclosed to third parties or copied or duplicated in any form,
9   in whole or in part, without the prior written consent of Nintendo.
10 
11  *---------------------------------------------------------------------------*/
12 
13 #ifndef NN_AOC_H_
14 #define NN_AOC_H_
15 
16 /*!
17     @defgroup   nn_aoc  Add-on Content (AOC) Library
18     @brief      This module is for managing add-on content.
19 
20                 For an overview of add-on content/downloadable content and related cautions and restrictions, see <i>Wii U Overview: E-Commerce</i>.
21                 For more information about how to create add-on content, see <i>Application Mastering Overview</i> and the demos in <tt>src/demo/nn/aoc/simple</tt>.
22     @{
23 */
24 
25 
26 /*!
27     @}
28 */
29 
30 #include <nn/aoc/aoc_Types.h>
31 #include <nn/aoc/aoc_Errors.h>
32 #include <nn/aoc/aoc_Defines.h>
33 #include <nn/aoc/aoc_Api.h>
34 
35 #endif // NN_AOC_H_
36