libdom
Loading...
Searching...
No Matches
custom_event.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 2009 Bo Yang <struggleyb.nku@gmail.com>
6 */
7
8#ifndef dom_interntal_events_custom_event_h_
9#define dom_interntal_events_custom_event_h_
10
12
13#include "events/event.h"
14
17 void *detail;
18};
19
20/* Constructor */
22
23/* Destructor */
25
26/* Initialise function */
28
29/* Finalise function */
31
32#endif
dom_exception
Definition exceptions.h:24
dom_exception _dom_custom_event_create(struct dom_custom_event **evt)
Definition custom_event.c:21
void _dom_custom_event_destroy(struct dom_custom_event *evt)
Definition custom_event.c:33
dom_exception _dom_custom_event_initialise(struct dom_custom_event *evt)
Definition custom_event.c:41
void _dom_custom_event_finalise(struct dom_custom_event *evt)
Definition custom_event.c:48
Definition custom_event.h:15
struct dom_event base
Definition custom_event.h:16
void * detail
Definition custom_event.h:17
Definition event.h:27