File: tkstuff.h

package info (click to toggle)
trn4 4.0-test77-18
  • links: PTS, VCS
  • area: non-free
  • in suites: forky, sid, trixie
  • size: 4,016 kB
  • sloc: ansic: 48,332; sh: 6,795; tcl: 1,696; yacc: 662; perl: 108; makefile: 26
file content (31 lines) | stat: -rw-r--r-- 690 bytes parent folder | download | duplicates (11)
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
31
/* tkstuff.h
 */

#ifdef USE_TK
EXT char* ttk_keys;

EXT int ttk_idle_flag;

/* if true, we are really running Tk */
EXT int ttk_running INIT(0);

/* if true, allow update via ttk_do_waiting_events() */
EXT int ttk_do_waiting_flag INIT(1);
#endif

/* if true, we are really running TCL */
EXT int ttcl_running INIT(0);

/* DON'T EDIT BELOW THIS LINE OR YOUR CHANGES WILL BE LOST! */

#ifdef USE_TK
void ttk_do_waiting_events _((void));
void ttk_wait_for_input _((void));
#endif
void ttcl_init _((void));
void ttcl_finalize _((int));
void ttcl_set_int _((char*,int));
void ttcl_set_str _((char*,char*));
int ttcl_get_int _((char*));
char* ttcl_get_str _((char*));
void ttcl_eval _((char*));