From 8af067e55d7d8e54d7a34922678cbb70d79eaf18 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Wed, 28 May 2003 08:08:00 +0000 Subject: [PATCH] Started an optional GUI for mkvinfo. --- mkvinfo.h | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 mkvinfo.h diff --git a/mkvinfo.h b/mkvinfo.h new file mode 100644 index 000000000..d640fa222 --- /dev/null +++ b/mkvinfo.h @@ -0,0 +1,31 @@ +/* + mkvmerge -- utility for splicing together matroska files + from component media subtypes + + mkvinfo.h + + Written by Moritz Bunkus + + Distributed under the GPL + see the file COPYING for details + or visit http://www.gnu.org/copyleft/gpl.html +*/ + +/*! + \file + \version \$Id: mkvinfo.h,v 1.1 2003/05/28 08:08:00 mosu Exp $ + \brief definition of global variables and functions + \author Moritz Bunkus +*/ + + +#ifndef __MKVINFO_H +#define __MKVINFO_H + +#define NAME "MKVInfo" + +void parse_args(int argc, char **argv, char *&file_name, bool &use_gui); +int console_main(int argc, char **argv); +bool process_file(const char *file_name); + +#endif // __MKVINFO_H