1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00

[iframe] Try to define interface

This commit is contained in:
Witold Filipczyk 2021-07-24 21:09:25 +02:00
parent cef822653d
commit 2c3632f012

View File

@ -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