package flac

  1. Overview
  2. Docs
type file
type handle = {
  1. fd : Unix.file_descr;
  2. dec : file t;
  3. callbacks : file callbacks;
  4. info : info;
  5. comments : (string * (string * string) list) option;
}
val create_from_fd : write -> Unix.file_descr -> handle
val create : write -> string -> handle