TF++, Miscellaneous classes and modules in C++:

◆ 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 114 of file bytesex.h.

114  {
116  magic_match = 1,
118  magic_swap = 2,
120  magic_nomatch = 3
121 };
The bytesex of the file matches this machine.
Definition: bytesex.h:116
The bytesex of the file must be swapped to match this machine.
Definition: bytesex.h:118
The magic number does match the file.
Definition: bytesex.h:120