2008-03-16 13:55:16 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2008 by Miika Pekkarinen
|
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2008-03-16 13:55:16 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _EVENTS_H
|
|
|
|
#define _EVENTS_H
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
2008-10-16 10:38:03 +00:00
|
|
|
/** Only CLASS defines and firmware/ level events should be defined here.
|
|
|
|
* apps/ level events are defined in apps/appevents.h
|
|
|
|
*/
|
|
|
|
|
2008-03-16 13:55:16 +00:00
|
|
|
/**
|
2008-04-27 19:34:41 +00:00
|
|
|
* High byte = Event class definition
|
|
|
|
* Low byte = Event ID
|
2008-03-16 13:55:16 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#define EVENT_CLASS_DISK 0x0100
|
|
|
|
#define EVENT_CLASS_PLAYBACK 0x0200
|
2008-04-03 17:56:04 +00:00
|
|
|
#define EVENT_CLASS_BUFFERING 0x0400
|
2008-06-23 13:20:35 +00:00
|
|
|
#define EVENT_CLASS_GUI 0x0800
|
2008-03-16 13:55:16 +00:00
|
|
|
|
2008-03-17 05:22:53 +00:00
|
|
|
bool add_event(unsigned short id, bool oneshot, void (*handler));
|
2008-03-16 13:55:16 +00:00
|
|
|
void remove_event(unsigned short id, void (*handler));
|
2008-03-17 05:22:53 +00:00
|
|
|
void send_event(unsigned short id, void *data);
|
2008-03-16 13:55:16 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|