Fix include problem
[kugel-rb.git] / firmware / export / events.h
blob42ddf584410b87a50fc8b031b321aa1d9dad7340
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2008 by Miika Pekkarinen
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
22 #ifndef _EVENTS_H
23 #define _EVENTS_H
25 #include <stdbool.h>
27 /** Only CLASS defines and firmware/ level events should be defined here.
28 * apps/ level events are defined in apps/appevents.h
31 /**
32 * High byte = Event class definition
33 * Low byte = Event ID
36 #define EVENT_CLASS_DISK 0x0100
37 #define EVENT_CLASS_PLAYBACK 0x0200
38 #define EVENT_CLASS_BUFFERING 0x0400
39 #define EVENT_CLASS_GUI 0x0800
40 #define EVENT_CLASS_LCD 0xf000
42 bool add_event(unsigned short id, bool oneshot, void (*handler)(void *data));
43 void remove_event(unsigned short id, void (*handler)(void *data));
44 void send_event(unsigned short id, void *data);
46 #endif