126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
|
*----------------------------------------------------------------------------
*/
int
@CPACKAGE@_Init(
Tcl_Interp *interp /* Interpreter to initialise. */
) {
if (Tcl_InitStubs(interp, "8.3", 0) == NULL) {
return TCL_ERROR;
}
if (Tk_InitStubs(interp, "8.3", 0) == NULL) {
return TCL_ERROR;
}
if (Tkimg_InitStubs(interp, TKIMG_VERSION, 0) == NULL) {
return TCL_ERROR;
}
MORE_INITIALIZATION;
/*
* Register the new photo image type.
|
|
|
|
|
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
|
*----------------------------------------------------------------------------
*/
int
@CPACKAGE@_Init(
Tcl_Interp *interp /* Interpreter to initialise. */
) {
if (!Tcl_InitStubs(interp, "8.3", 0)) {
return TCL_ERROR;
}
if (!Tk_InitStubs(interp, "8.3", 0)) {
return TCL_ERROR;
}
if (!Tkimg_InitStubs(interp, TKIMG_VERSION, 0)) {
return TCL_ERROR;
}
MORE_INITIALIZATION;
/*
* Register the new photo image type.
|