aboutsummaryrefslogtreecommitdiff
path: root/src/html.hh
blob: 910f3e47b02c76639bb8da87973a3c3d4fafb52c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef __HTML_HH__
#define __HTML_HH__

#include "url.h"               // for DilloUrl
#include "form.hh"             // for form::Form

#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */

/*
 * Exported functions
 */
void a_Html_form_event_handler(void *data,
                               form::Form *form_receiver,
                               void *v_resource,
                               int click_x, int click_y);
void a_Html_free(void *data);
void a_Html_load_images(void *v_html, DilloUrl *pattern);

#ifdef __cplusplus
}
#endif /* __cplusplus */


#endif /* __HTML_HH__ */