1 /*---------------------------------------------------------------------------*
2   Project:  NintendoWare
3   File:     rvct.h
4 
5   Copyright (C)2009-2011 Nintendo/HAL Laboratory, Inc.  All rights reserved.
6 
7   These coded instructions, statements, and computer programs contain proprietary
8   information of Nintendo and/or its licensed developers and are protected by
9   national and international copyright laws. They may not be disclosed to third
10   parties or copied or duplicated in any form, in whole or in part, without the
11   prior written consent of Nintendo.
12 
13   The content herein is highly confidential and should be handled accordingly.
14 
15   $Revision: 31311 $
16  *---------------------------------------------------------------------------*/
17 
18 #ifndef NW_CONFIG_COMPILER_RVCT_H_
19 #define NW_CONFIG_COMPILER_RVCT_H_
20 
21 #pragma diag_suppress 2548 // multicharacter character literal
22 #pragma diag_suppress 177  // function "<unnamed>::XXX" was declared but never reference
23 #pragma diag_suppress 2530 // padding added to end of struct.
24 #pragma diag_suppress 1301 // padding inserted in struct.
25 
26 #define NW_NO_THROW     throw()
27 #define NW_NO_INLINE(function)    __declspec(noinline) function
28 
29 /* NW_CONFIG_COMPILER_RVCT_H_ */
30 #endif
31