---------------------------------------------------------------------
  ENUM: OSIdentifier
 
   Valid UDF-defined OS Identifiers, used in RegIDs.
 
  DEFINITIONS:
   osid_Generic       Not specified
   osid_IBM_AIX       AIX operating system
   osid_SUN_Solaris   Solaris
   osid_HP_UX         HP-UX
   osid_SGI_Irix      Irix
 
  USES:
   Used to test and set osIdentifier fields in RegIDs.
 
  NOTES:
   optional
 
 ----------------------------------------------------------------------
  Private comments go here - will not be extracted into HTML.
 ----------------------------------------------------------------------
enum OSIdentifier {
    osid_Generic     = 0,
    osid_IBM_AIX     = 1,
    osid_SUN_Solaris = 2,
    osid_HP_UX       = 3,
    osid_SGI_Irix    = 4
};

udf_eng@gr.hp.com