]> Creatis software - gdcm.git/blob - src/gdcmRLE.cxx
* oops forgot to commit Changelog :)
[gdcm.git] / src / gdcmRLE.cxx
1 //This is needed when compiling in debug mode
2 #ifdef _MSC_VER
3 // 'identifier' : class 'type' needs to have dll-interface to be used by
4 // clients of class 'type2'
5 #pragma warning ( disable : 4251 )
6 // 'identifier' : identifier was truncated to 'number' characters in the
7 // debug information
8 #pragma warning ( disable : 4786 )
9 #endif //_MSC_VER
10
11 #include <stdio.h>
12 #include "gdcmFile.h"
13 #include "jpeg/libijg8/cdjpeg.h"                /* Common decls for cjpeg/djpeg applications */
14 #include "jpeg/libijg8/jversion.h"      /* for version message */
15 #include <ctype.h>              /* to declare isprint() */
16 /* Create the add-on message string table. */
17
18 #define JMESSAGE(code,string)   string ,
19
20 static const char * const cdjpeg_message_table[] = {
21 #include "jpeg/libijg8/cderror.h"
22   NULL
23 };
24  
25  /* -------------------------------------------------------------------- */
26  //
27  // RLE LossLess Files
28  //
29  /* -------------------------------------------------------------------- */
30
31 int
32 gdcmFile::gdcm_read_RLE_file (void * image_buffer) {
33
34
35   
36
37
38
39
40
41
42
43
44
45
46
47   
48   
49    printf("Sorry RLE LossLess File not yet taken into account\n");
50    return 0;
51 }