From 2c3632f012cef9924e67326f8a8b5c4ab4374695 Mon Sep 17 00:00:00 2001 From: Witold Filipczyk Date: Sat, 24 Jul 2021 21:09:25 +0200 Subject: [PATCH] [iframe] Try to define interface --- src/document/html/iframes.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/document/html/iframes.h diff --git a/src/document/html/iframes.h b/src/document/html/iframes.h new file mode 100644 index 000000000..519e292c7 --- /dev/null +++ b/src/document/html/iframes.h @@ -0,0 +1,18 @@ + +#ifndef EL__DOCUMENT_HTML_IFRAMES_H +#define EL__DOCUMENT_HTML_IFRAMES_H + +#ifdef __cplusplus +extern "C" { +#endif + +struct iframeset_desc; +struct iframe_desc; + +void add_iframeset_entry(struct iframeset_desc *parent, struct iframe_desc *subframe); + +#ifdef __cplusplus +} +#endif + +#endif