/*---------------------------------------------------------------------------* Copyright (C) Nintendo. All rights reserved. These coded instructions, statements, and computer programs contain proprietary information of Nintendo of America Inc. and/or Nintendo Company Ltd., and are protected by Federal copyright law. They may not be disclosed to third parties or copied or duplicated in any form, in whole or in part, without the prior written consent of Nintendo. *---------------------------------------------------------------------------*/ #ifndef NN_CONFIG_CONFIG_PLATFORM_H_ #define NN_CONFIG_CONFIG_PLATFORM_H_ #if defined(_WIN32) || defined(_WIN64) #define NN_PLATFORM_WIN32 #define NN_CONFIG_PLATFORM_WINDOWS // obsoleted #define NN_PLATFORM_WINDOWS // obsoleted #else #define NN_CONFIG_PLATFORM_CAFE #ifndef NN_PLATFORM_CAFE #define NN_PLATFORM_CAFE #endif #if defined(NN_PLATFORM_CAFE) #define NN_CONFIG_PLATFORM_CAFE_DEV_IOP #define NN_PLATFORM_CAFE_DEV_IOP #endif #if !defined(IOP_BUILD) #define NN_CONFIG_PLATFORM_CAFE_COS #define NN_PLATFORM_CAFE_COS #else #define NN_PLATFORM_CAFE_IOS #define NN_CONFIG_PLATFORM_CAFE_IOP #define NN_PLATFORM_CAFE_IOP #endif #endif #endif // NN_CONFIG_CONFIG_PLATFORM_H_