1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00
elinks/src/document/html/iframes.h
2021-07-31 14:48:13 +02:00

36 lines
646 B
C

#ifndef EL__DOCUMENT_HTML_IFRAMES_H
#define EL__DOCUMENT_HTML_IFRAMES_H
#ifdef __cplusplus
extern "C" {
#endif
struct document_options;
struct iframeset_desc;
struct iframe_desc {
char *name;
struct uri *uri;
int x;
int y;
int width, height;
};
struct iframeset_desc {
int n;
// struct el_box box;
struct iframe_desc iframe_desc[1]; /* must be last of struct. --Zas */
};
void add_iframeset_entry(struct iframeset_desc **parent, char *url, char *name, int y, int width, int height);
void format_iframes(struct session *ses, struct iframeset_desc *ifsd, struct document_options *op, int depth);
#ifdef __cplusplus
}
#endif
#endif