21 lines
554 B
C
21 lines
554 B
C
|
/*
|
||
|
* wmmp3
|
||
|
* Copyright (c)1999 Patrick Crosby <xb@dotfiles.com>.
|
||
|
* This software covered by the GPL. See COPYING file for details.
|
||
|
*
|
||
|
* buttons.h
|
||
|
*
|
||
|
* header file for buttons.c
|
||
|
*
|
||
|
* $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
|