//This is needed when compiling in debug mode #ifdef _MSC_VER // 'identifier' : class 'type' needs to have dll-interface to be used by // clients of class 'type2' #pragma warning ( disable : 4251 ) // 'identifier' : identifier was truncated to 'number' characters in the // debug information #pragma warning ( disable : 4786 ) #endif //_MSC_VER #include #include "gdcmFile.h" #include "jpeg/libijg8/cdjpeg.h" /* Common decls for cjpeg/djpeg applications */ #include "jpeg/libijg8/jversion.h" /* for version message */ #include /* to declare isprint() */ /* Create the add-on message string table. */ #define JMESSAGE(code,string) string , static const char * const cdjpeg_message_table[] = { #include "jpeg/libijg8/cderror.h" NULL }; /* -------------------------------------------------------------------- */ // // RLE LossLess Files // /* -------------------------------------------------------------------- */ int gdcmFile::gdcm_read_RLE_file (void * image_buffer) { printf("Sorry RLE LossLess File not yet taken into account\n"); return 0; }