00001 #ifndef CORONA_SAVE_H 00002 #define CORONA_SAVE_H 00003 00004 00005 #include "corona.h" 00006 00007 00008 namespace corona { 00009 #ifndef NO_PNG 00010 bool SavePNG(File* file, Image* image); // SavePNG.cpp 00011 #endif 00012 bool SaveTGA(File* file, Image* image); // SaveTGA.cpp 00013 } 00014 00015 00016 #endif