1 /*---------------------------------------------------------------------------* 2 3 Copyright (C) Nintendo. All rights reserved. 4 5 These coded instructions, statements, and computer programs contain 6 proprietary information of Nintendo of America Inc. and/or Nintendo 7 Company Ltd., and are protected by Federal copyright law. They may 8 not be disclosed to third parties or copied or duplicated in any form, 9 in whole or in part, without the prior written consent of Nintendo. 10 11 *---------------------------------------------------------------------------*/ 12 // ------------------------------------------------------- 13 // DDS_10.h 14 // 15 // Declares functions for DDS Reader. 16 // ------------------------------------------------------- 17 #ifndef DDS_10_H 18 #define DDS_10_H 19 20 #include "DDS.h" 21 22 namespace DDSReader 23 { 24 TU_Error LoadDDS10(FILE* pFile, DDSD2* pDDSD, GX2Surface* pSurface); 25 TU_Error SaveDDS10(FILE* pFile, const GX2Surface* pSurface); 26 } //namespace DDSReader 27 #endif //#ifndef DDS_10_H 28