00001 #ifndef CORONA_OPEN_H 00002 #define CORONA_OPEN_H 00003 00004 00005 #include "corona.h" 00006 00007 00008 namespace corona { 00009 Image* OpenBMP (File* file); // OpenBMP.cpp 00010 #ifndef NO_JPEG 00011 Image* OpenJPEG(File* file); // OpenJPEG.cpp 00012 #endif 00013 Image* OpenPCX (File* file); // OpenPCX.cpp 00014 #ifndef NO_PNG 00015 Image* OpenPNG (File* file); // OpenPNG.cpp 00016 #endif 00017 Image* OpenTGA (File* file); // OpenTGA.cpp 00018 Image* OpenGIF (File* file); // OpenGIF.cpp 00019 } 00020 00021 00022 #endif