blob: c1e477b942030991e54c7df7c8d1721ae7978941 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef EXT_H
#define EXT_H
#include "data.h"
bool OpenOnline(const CfgA& cfg, int iEp);
bool OpenWiki(const DlvDataA& d);
bool OpenLocally(CfgA& cfg, const ElvDataA& e);
bool ShowInExplorer(CfgA& cfg, const ElvDataA& e);
#endif
|