File: crwin.h

package info (click to toggle)
cgoban 1.9.14-18
  • links: PTS
  • area: main
  • in suites: buster, stretch
  • size: 3,448 kB
  • sloc: ansic: 36,037; sh: 707; makefile: 259
file content (30 lines) | stat: -rw-r--r-- 732 bytes parent folder | download | duplicates (15)
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
27
28
29
30
/*
 * src/crwin.h, part of Complete Goban (game program)
 * Copyright (C) 1995 William Shubert.
 * See "configure.h.in" for more copyright information.
 */


#ifndef  _CRWIN_H_
#define  _CRWIN_H_  1


/**********************************************************************
 * Data types
 **********************************************************************/
typedef struct  {
  ButEnv  *env;
  But  *box, *title, *byBill, *noWarr, *seeHelp;
  ButTimer  *timer;

  MAGIC_STRUCT
} Crwin;


/**********************************************************************
 * Functions
 **********************************************************************/
Crwin  *crwin_create(Cgoban *cg, ButWin *win, int layer);


#endif  /* _CRWIN_H_ */