class interface F_MULTIMEDIA

feature(s) from F_MULTIMEDIA
   --  Command

   send_command (com: STRING)
      --  Send MCI (Media Control Interface) command string.

      require
         ok: com /= Void

   last_result: BOOLEAN
      --  Was last command succesful (true if so)?


   last_error: STRING
      --  Last error message (if last_result = false).



end of F_MULTIMEDIA