libdom
Loading...
Searching...
No Matches
functypes.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 2007 John-Mark Bell <jmb@netsurf-browser.org>
6 */
7
8#ifndef dom_functypes_h_
9#define dom_functypes_h_
10
11#include <stddef.h>
12#include <inttypes.h>
13
17enum {
26};
27
31typedef void (*dom_msg)(uint32_t severity, void *ctx, const char *msg, ...);
32
33#endif
@ DOM_MSG_ERROR
Definition functypes.h:22
@ DOM_MSG_EMERGENCY
Definition functypes.h:25
@ DOM_MSG_DEBUG
Definition functypes.h:18
@ DOM_MSG_NOTICE
Definition functypes.h:20
@ DOM_MSG_CRITICAL
Definition functypes.h:23
@ DOM_MSG_INFO
Definition functypes.h:19
@ DOM_MSG_WARNING
Definition functypes.h:21
@ DOM_MSG_ALERT
Definition functypes.h:24
void(* dom_msg)(uint32_t severity, void *ctx, const char *msg,...)
Definition functypes.h:31