---------------------------------------------------------------------
ENUM: EAType
These are the different classifications of individual EAs.
DEFINITIONS:
ea_CharSetInfo - The ISO-defined EA for Character set information.
ea_AlternatePerms - The ISO-defined EA for Alternate Permissions..
ea_FileTimes - The ISO-defined EA for File times.
ea_InfoTimes - The ISO-defined EA for Information times.
ea_DeviceSpec - The ISO-defined EA for Device specification.
ea_ImplementUse - The ISO-defined EA classification.
ea_ApplicationUse - The ISO-defined EA classification.
ea_Unknown - Not recognized.
USES:
Each EA MUST fall into one of these categories. The category
numbers are defined by the ISO specification. These values are
used in the attribute Type field of the EAPrefix.
NOTES:
----------------------------------------------------------------------
Private comments go here - will not be extracted into HTML.
----------------------------------------------------------------------
enum EAType {
ea_CharSetInfo = 1,
ea_AlternatePerms = 3,
ea_FileTimes = 5,
ea_InfoTimes = 6,
ea_DeviceSpec = 12,
ea_ImplementUse = 2048,
ea_ApplicationUse = 65536,
ea_Unknown = -1
};
udf_eng@gr.hp.com