00001 // Funclib TexturePNG v1.0.0 00002 // 00003 // This module adds PNG texture loading/saving functionality. 00004 // 00005 // Contributor(s): Flatmush 00006 00007 00008 00009 #ifndef FLTEXTUREPNG_H 00010 #define FLTEXTUREPNG_H 00011 00012 #include "flGlobal.h" 00013 00014 #if FL_TEXTURE_PNG != 0 00015 00016 #include "flTexture.h" 00017 00018 #ifdef __cplusplus 00019 extern "C" { 00020 #endif 00021 00022 extern Texture* texLoadPNG(char* inPath); 00023 extern bool texSavePNG(Texture* inTex, char* inPath); 00024 00025 #ifdef __cplusplus 00026 } 00027 #endif 00028 00029 #endif 00030 00031 #endif