File: buttons.h

package info (click to toggle)
gramofile 1.6-12
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 1,440 kB
  • sloc: ansic: 11,252; makefile: 60
file content (26 lines) | stat: -rw-r--r-- 415 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* Buttons - Header

 * Copyright (C) 1998 J.A. Bezemer
 *
 * Licensed under the terms of the GNU General Public License.
 * ABSOLUTELY NO WARRANTY.
 * See the file `COPYING' in this directory.
 */

#ifndef HAVE_BUTTONS_H
#define HAVE_BUTTONS_H


typedef struct
  {
    char *text;
    int y;
    int x;
    int selected;
  }
button_t;

extern void button_display (button_t * button);


#endif /* HAVE_BUTTONS_H */