File: bltOldConfig.h

package info (click to toggle)
blt 2.5.3%2Bdfsg-3
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 24,864 kB
  • sloc: ansic: 133,724; tcl: 17,680; sh: 2,722; makefile: 799; cpp: 370
file content (33 lines) | stat: -rw-r--r-- 1,366 bytes parent folder | download | duplicates (5)
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
32
33
/* Old config headers. */

#include <tk.h>

EXTERN int		Blt_ConfigureInfo _ANSI_ARGS_((Tcl_Interp * interp, 
				Tk_Window tkwin, Tk_ConfigSpec * specs, 
				char * widgRec, CONST char * argvName, 
				int flags));
EXTERN int		Blt_ConfigureValue _ANSI_ARGS_((Tcl_Interp * interp, 
				Tk_Window tkwin, Tk_ConfigSpec * specs, 
				char * widgRec, CONST char * argvName, 
				int flags));
EXTERN int		Blt_ConfigureWidget _ANSI_ARGS_((Tcl_Interp * interp, 
				Tk_Window tkwin, Tk_ConfigSpec * specs, 
				int argc, CONST char ** argv, 
				char * widgRec, int flags));

EXTERN void		Blt_FreeOptions _ANSI_ARGS_((Tk_ConfigSpec * specs, 
				char * widgRec, Display * display, 
				int needFlags));

EXTERN Tk_ConfigSpec *	Blt_GetCachedSpecs _ANSI_ARGS_((Tcl_Interp *interp,
			    const Tk_ConfigSpec *staticSpecs));

#define Tk_ConfigureInfo(interp, tkwin, specs, widgRec, argvName, flags) Blt_ConfigureInfo(interp, tkwin, specs, widgRec, argvName, flags)

#define Tk_ConfigureValue(interp, tkwin, specs, widgRec, argvName, flags) Blt_ConfigureValue(interp, tkwin, specs, widgRec, argvName, flags)

#define Tk_FreeOptions(specs, widgRec, display, needFlags) Blt_FreeOptions(specs, widgRec, display, needFlags)

#define Tk_ConfigureWidget(interp, tkwin, origSpecs, argc, argv, widgRec, flags) Blt_ConfigureWidget(interp, tkwin, origSpecs, argc, argv, widgRec, flags)