DATRW++ library: seismic data I/O with multiple formats

◆ Emagic_type

Define bytesex indicator for magic number test.

Enumerator
magic_match 

The bytesex of the file matches this machine.

magic_swap 

The bytesex of the file must be swapped to match this machine.

magic_nomatch 

The magic number does match the file.

Definition at line 98 of file bytesex.h.

98  {
99  //! The bytesex of the file matches this machine
100  magic_match = 1,
101  //! The bytesex of the file must be swapped to match this machine
102  magic_swap = 2,
103  //! The magic number does match the file
104  magic_nomatch = 3
105  };
The bytesex of the file matches this machine.
Definition: bytesex.h:100
The magic number does match the file.
Definition: bytesex.h:104
The bytesex of the file must be swapped to match this machine.
Definition: bytesex.h:102