Tk Img Extensions
Diff
Not logged in
Tcl 2014 Conference, Portland/OR, US, Nov 10-14
Send your abstracts to tclconference@googlegroups.com by Sep 8.

Differences From Artifact [b857879a9c]:

To Artifact [1ac20e7a05]:


126
127
128
129
130
131
132
133

134
135
136

137
138
139

140
141
142
143
144
145
146
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) {
	if (!Tcl_InitStubs(interp, "8.3", 0)) {
		return TCL_ERROR;
	}
	if (Tk_InitStubs(interp, "8.3", 0) == NULL) {
	if (!Tk_InitStubs(interp, "8.3", 0)) {
		return TCL_ERROR;
	}
	if (Tkimg_InitStubs(interp, TKIMG_VERSION, 0) == NULL) {
	if (!Tkimg_InitStubs(interp, TKIMG_VERSION, 0)) {
		return TCL_ERROR;
	}

	MORE_INITIALIZATION;

	/*
	 * Register the new photo image type.