1 /*---------------------------------------------------------------------------* 2 Project: NintendoWare 3 File: ut_Config.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: $ 14 *---------------------------------------------------------------------------*/ 15 16 #ifndef NW_UT_CONFIG_H_ 17 #define NW_UT_CONFIG_H_ 18 19 // TODO: このファイルに記述したマクロは必ずマクロ一覧ページへ記載してください。 20 21 //! このマクロを定義すると MoveArray クラスの「メモリを自動拡張する機能」が有効になります。 22 #define NW_MOVE_ARRAY_VARIABILITY_ENABLED 23 24 //! このマクロを定義すると MoveArray クラスでメモリを確保する際に、キャッシュのアライメントにそろえるようになります。 25 #define NW_MOVE_ARRAY_CACHE_LINE_ALIGNMENT_ENABLED 26 27 //! このマクロを定義すると Signal クラスで複数の Slot が管理できるようになります。 28 #define NW_SIGNAL_MULTI_SLOT_ENABLED 29 30 #endif // NW_UT_CONFIG_H_ 31 32