diff options
author | John Ankarström <john@ankarstrom.se> | 2022-09-02 20:16:04 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2022-09-02 20:16:18 +0200 |
commit | bc4cef92d8efbf97a9215122abc2d7247c287f12 (patch) | |
tree | a5ca307281c4f143b5f172428c9fd2b629d6b426 /c/ext.h | |
parent | 5c1c2ce2bdbf9735ad8a4d162609a8c22a4f0954 (diff) | |
download | EpisodeBrowser-bc4cef92d8efbf97a9215122abc2d7247c287f12.tar.gz |
Improve Window object.
Diffstat (limited to 'c/ext.h')
-rw-r--r-- | c/ext.h | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1,8 +1,10 @@ #ifndef EXT_H #define EXT_H -bool OpenOnline(int iEp); -bool OpenWiki(int iEp); -bool OpenLocally(int iEp); +#include "data.h" + +bool OpenOnline(const CfgA& cfg, int iEp); +bool OpenWiki(const DlvDataA& d); +bool OpenLocally(CfgA& cfg, const ElvDataA& e); #endif |