1 /*
2  * wmslib/src/but/radio.h, part of wmslib (Library functions)
3  * Copyright (C) 1994-1995 William Shubert.
4  * See "configure.h.in" for more copyright information.
5  *
6  * Includes for radio.c
7  */
8 
9 #ifndef  _BUT_RADIO_H_
10 #define  _BUT_RADIO_H_  1
11 
12 /**********************************************************************
13  * Functions
14  **********************************************************************/
15 extern But  *butRadio_create(ButOut (*func)(But *but, int value),
16 			     void *packet, ButWin *win, int layer, int flags,
17 			     int val, int maxVal);
18 extern int  butRadio_get(But *but);
19 extern void  butRadio_set(But *but, int newVal, bool propagate);
20 
21 #endif  /* _BUT_CHECKBOX_H_ */
22