---------------------------------------------------------------------
  ENUM: CharSetType
 
   Specifies whether a string is in ASCII or OSTA Compressed Unicode.
 
  DEFINITIONS:
   charset_Ascii   8- bit ascii
   charset_OCU     OSTA Compressed Unicode
 
  USES:
   This is used internally, to allow backward compatibility with
   non-OCU (ASCII) strings.  Used mainly by String constructor, to
   allow conversion from OCU into internal representation form.
 
  NOTES:
 
 ----------------------------------------------------------------------
enum CharSetType {

    charset_Ascii = 0,
    charset_OCU   = 1
};

udf_eng@gr.hp.com