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