---------------------------------------------------------------------
  ENUM: LVIDType
 
   Specifies which type of LVID is to be written.
 
  DEFINITIONS:
   lvid_WithICBTable Includes an ICBTable at end.
   lvid_Simple       Does not include ICBTable.
 
  USES:
   optional
 
  ABUSES:
   optional
 
  NOTES:
   Version with ICBTable should only be found on older HP Archive
   Server disks. More recent products use an EA on the Root ICB.
 
 ----------------------------------------------------------------------
  Private comments go here - will not be extracted into HTML.
 ----------------------------------------------------------------------
enum LVIDType {
    lvid_WithICBTable = 0,
    lvid_Simple       = 1
};

udf_eng@gr.hp.com