goldendict-ng/mdx.hh
Timon Wong cdab08a1ef MDict (.mdx/.mdd) format support
summary

* mdd is complementary resource archive for mdx (dictionary file)
* lzo2 library for (old) MDict version 1 file format
* try Load bass_spx.dll under windows for speex decoding
* internal redirection "@@@LINK=" for both mdx and mdd
2013-04-23 20:07:05 +08:00

22 lines
592 B
C++

/* This file is (c) 2013 Timon Wong <timon86.wang.gmail.com>
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
#ifndef __MDX_HH_INCLUDED__
#define __MDX_HH_INCLUDED__
#include "dictionary.hh"
namespace Mdx
{
using std::vector;
using std::string;
vector< sptr< Dictionary::Class > > makeDictionaries( vector< string > const & fileNames,
string const & indicesDir,
Dictionary::Initializing & ) throw( std::exception );
}
#endif // __MDX_HH_INCLUDED__