/*---------------------------------------------------------------------------* 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. *---------------------------------------------------------------------------*/ // ------------------------------------------------------- // DDS_10.h // // Declares functions for DDS Reader. // ------------------------------------------------------- #ifndef DDS_10_H #define DDS_10_H #include "DDS.h" namespace DDSReader { TU_Error LoadDDS10(FILE* pFile, DDSD2* pDDSD, GX2Surface* pSurface); TU_Error SaveDDS10(FILE* pFile, const GX2Surface* pSurface); } //namespace DDSReader #endif //#ifndef DDS_10_H