CTR Pia  4.11.3
Game Communication Engine
platform.h
1 /*---------------------------------------------------------------------------*
2  Project: Pia
3  File: platform.h
4 
5  Copyright 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 #pragma once
16 
17 #include <pia/settings.h>
18 
19 #if NN_PIA_CTR
20 #include <pia/platform/platformCtr.h>
21 #endif
22 
23 #if NN_PIA_WIN
24 #include <pia/platform/platformWin.h>
25 #endif
26 
27 #if NN_PIA_CAFE
28 #include <pia/platform/platformCafe.h>
29 #endif
30 
31 #if NN_PIA_NIN_WIN
32 #include <stdint.h>
33 #include <pia/platform/platformWin.h>
34 #include <nn/nn_Result.h>
35 #endif