2016-08-08 15:41:15 +00:00
|
|
|
/*
|
|
|
|
* wmmp3
|
|
|
|
* Copyright (c)1999 Patrick Crosby <xb@dotfiles.com>.
|
|
|
|
* This software covered by the GPL. See COPYING file for details.
|
|
|
|
*
|
2016-12-23 23:28:17 +00:00
|
|
|
* buttons.h
|
|
|
|
*
|
2016-08-08 15:41:15 +00:00
|
|
|
* header file for buttons.c
|
2016-12-23 23:28:17 +00:00
|
|
|
*
|
2016-08-08 15:41:15 +00:00
|
|
|
* $Id: mpg123ctl.c,v 1.12 1999/10/08 06:21:41 pcrosby Exp $
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __BUTTONS__
|
|
|
|
#define __BUTTONS__
|
|
|
|
|
|
|
|
void button_down(int i);
|
|
|
|
void button_up(int i);
|
|
|
|
void button_gray(int i);
|
|
|
|
|
|
|
|
#endif
|