libdom
Loading...
Searching...
No Matches
html_canvas_element.h
Go to the documentation of this file.
1/*
2 * This file is part of libdom.
3 * Licensed under the MIT License,
4 * http://www.opensource.org/licenses/mit-license.php
5 * Copyright 2020 Vincent Sanders <vince@netsurf-browser.org>
6 */
7
8#ifndef dom_html_canvas_element_h_
9#define dom_html_canvas_element_h_
10
11#include <dom/inttypes.h>
12#include <dom/core/exceptions.h>
13
15
17
19 dom_html_canvas_element *object, dom_ulong *width);
20
22 dom_html_canvas_element *object, dom_ulong width);
23
25 dom_html_canvas_element *object, dom_ulong *height);
26
28 dom_html_canvas_element *object, dom_ulong height);
29
30
31#endif
dom_exception
Definition exceptions.h:24
dom_exception dom_html_canvas_element_set_width(dom_html_canvas_element *object, dom_ulong width)
Definition html_canvas_element.c:174
dom_exception dom_html_canvas_element_get_width(dom_html_canvas_element *object, dom_ulong *width)
Definition html_canvas_element.c:152
dom_exception dom_html_canvas_element_set_height(dom_html_canvas_element *object, dom_ulong height)
Definition html_canvas_element.c:206
dom_exception dom_html_canvas_element_get_height(dom_html_canvas_element *object, dom_ulong *height)
Definition html_canvas_element.c:184
uint32_t dom_ulong
Definition inttypes.h:31
Definition html_canvas_element.h:15