1 /*---------------------------------------------------------------------------*
2   Project:  Horizon
3   File:     os_Initialize.h
4   Copyright (C)2009 Nintendo Co., Ltd.  All rights reserved.
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   $Rev: 24156 $
11  *---------------------------------------------------------------------------
12 
13 
14 */
15 
16 #ifndef NN_OS_OS_INITIALIZE_H_
17 #define NN_OS_OS_INITIALIZE_H_
18 
19 #include <nn/Result.h>
20 
21 #ifdef __cplusplus
22 
23 namespace nn{ namespace os{
24 
25     void Initialize();
26 
27 
28 }} // namespace nn::os
29 
30 #endif // __cplusplus
31 
32 // C declarations follow
33 
34 #include <nn/util/detail/util_CLibImpl.h>
35 
36 NN_EXTERN_C void nnosInitialize(void);
37 
38 
39 #endif /* NN_OS_OS_INITIALIZE_H_ */
40