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 #pragma once 14 #ifndef __GFDFILE_H__ 15 #define __GFDFILE_H__ 16 17 #ifdef __cplusplus 18 extern "C" 19 { 20 #endif // __cplusplus 21 22 #ifdef _EXPORTING 23 #define GFD_DECLSPEC __declspec(dllexport) 24 #else 25 #define GFD_DECLSPEC __declspec(dllimport) 26 #endif 27 28 #define GFD_API __cdecl 29 30 #include "gfdFile/gfdFileIO.h" 31 #include "gfdFile/gfdFileShader.h" 32 #include "gfdFile/gfdFileTexture.h" 33 34 #ifdef __cplusplus 35 } 36 #endif // __cplusplus 37 38 #endif // __GFDFILE_H__ 39