1 /*---------------------------------------------------------------------------*
2   Project:  NintendoWare
3   File:     rvct.h
4 
5   Copyright (C)2009-2010 Nintendo Co., Ltd./HAL Laboratory, Inc.  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   $Revision: 16785 $
14  *---------------------------------------------------------------------------*/
15 
16 #ifndef NW_CONFIG_COMPILER_RVCT_H_
17 #define NW_CONFIG_COMPILER_RVCT_H_
18 
19 #pragma diag_suppress 2548 // multicharacter character literal
20 #pragma diag_suppress 177  // function "<unnamed>::XXX" was declared but never reference
21 #pragma diag_suppress 2530 // padding added to end of struct.
22 #pragma diag_suppress 1301 // padding inserted in struct.
23 
24 #define NW_NO_THROW     throw()
25 #define NW_NO_INLINE(function)    __declspec(noinline) function
26 
27 /* NW_CONFIG_COMPILER_RVCT_H_ */
28 #endif
29