Add a script to clean up after Tcl/Tk installation
[git/jnareb-git.git] / mingw / include / jpegtclDecls.h
blobcf7d5e81bff5e20aabee0160aafd0735c8e367ba
1 /*
2 * jpegtclDecls.h --
4 * Declarations of functions in the platform independent public JPEGTCL API.
6 */
8 #ifndef _JPEGTCLDECLS
9 #define _JPEGTCLDECLS
12 * WARNING: The contents of this file is automatically generated by the
13 * genStubs.tcl script. Any modifications to the function declarations
14 * below should be made in the jpegtcl.decls script.
17 #include <tcl.h>
19 /* undef Tcl macros that conflict with libjpeg stuff (sigh) */
20 #undef EXTERN
22 #include <jpegtclDeclsMask.h>
23 #include <../jpeglib.h>
24 #include <../jerror.h>
25 #include <jpegtclDeclsUnmask.h>
28 * And recreate the definition of "tcl.h", we need it below.
31 #undef EXTERN
32 #ifdef __cplusplus
33 # define EXTERN extern "C" TCL_STORAGE_CLASS
34 #else
35 # define EXTERN extern TCL_STORAGE_CLASS
36 #endif
39 /* !BEGIN!: Do not edit below this line. */
42 * Exported function declarations:
45 /* 0 */
46 EXTERN struct jpeg_error_mgr * jpeg_std_error _ANSI_ARGS_((
47 struct jpeg_error_mgr * err));
48 /* 1 */
49 EXTERN void jpeg_CreateCompress _ANSI_ARGS_((
50 j_compress_ptr cinfo, int version,
51 size_t structsize));
52 /* 2 */
53 EXTERN void jpeg_CreateDecompress _ANSI_ARGS_((
54 j_decompress_ptr cinfo, int version,
55 size_t structsize));
56 /* 3 */
57 EXTERN void jpeg_destroy_compress _ANSI_ARGS_((
58 j_compress_ptr cinfo));
59 /* 4 */
60 EXTERN void jpeg_destroy_decompress _ANSI_ARGS_((
61 j_decompress_ptr cinfo));
62 /* 5 */
63 EXTERN void jpeg_stdio_dest _ANSI_ARGS_((j_compress_ptr cinfo,
64 FILE * outfile));
65 /* 6 */
66 EXTERN void jpeg_stdio_src _ANSI_ARGS_((j_decompress_ptr cinfo,
67 FILE * infile));
68 /* 7 */
69 EXTERN void jpeg_set_defaults _ANSI_ARGS_((j_compress_ptr cinfo));
70 /* 8 */
71 EXTERN void jpeg_set_colorspace _ANSI_ARGS_((
72 j_compress_ptr cinfo,
73 J_COLOR_SPACE colorspace));
74 /* 9 */
75 EXTERN void jpeg_default_colorspace _ANSI_ARGS_((
76 j_compress_ptr cinfo));
77 /* 10 */
78 EXTERN void jpeg_set_quality _ANSI_ARGS_((j_compress_ptr cinfo,
79 int quality, boolean force_baseline));
80 /* 11 */
81 EXTERN void jpeg_set_linear_quality _ANSI_ARGS_((
82 j_compress_ptr cinfo, int scale_factor,
83 boolean force_baseline));
84 /* 12 */
85 EXTERN void jpeg_add_quant_table _ANSI_ARGS_((
86 j_compress_ptr cinfo, int which_tbl,
87 const unsigned int * basic_table,
88 int scale_factor, boolean force_baseline));
89 /* 13 */
90 EXTERN int jpeg_quality_scaling _ANSI_ARGS_((int quality));
91 /* 14 */
92 EXTERN void jpeg_simple_progression _ANSI_ARGS_((
93 j_compress_ptr cinfo));
94 /* 15 */
95 EXTERN void jpeg_suppress_tables _ANSI_ARGS_((
96 j_compress_ptr cinfo, boolean suppress));
97 /* 16 */
98 EXTERN JQUANT_TBL * jpeg_alloc_quant_table _ANSI_ARGS_((
99 j_common_ptr cinfo));
100 /* 17 */
101 EXTERN JHUFF_TBL * jpeg_alloc_huff_table _ANSI_ARGS_((
102 j_common_ptr cinfo));
103 /* 18 */
104 EXTERN void jpeg_start_compress _ANSI_ARGS_((
105 j_compress_ptr cinfo,
106 boolean write_all_tables));
107 /* 19 */
108 EXTERN JDIMENSION jpeg_write_scanlines _ANSI_ARGS_((
109 j_compress_ptr cinfo, JSAMPARRAY scanlines,
110 JDIMENSION num_lines));
111 /* 20 */
112 EXTERN void jpeg_finish_compress _ANSI_ARGS_((
113 j_compress_ptr cinfo));
114 /* 21 */
115 EXTERN JDIMENSION jpeg_write_raw_data _ANSI_ARGS_((
116 j_compress_ptr cinfo, JSAMPIMAGE data,
117 JDIMENSION num_lines));
118 /* 22 */
119 EXTERN void jpeg_write_marker _ANSI_ARGS_((j_compress_ptr cinfo,
120 int marker, const JOCTET * dataptr,
121 unsigned int datalen));
122 /* 23 */
123 EXTERN void jpeg_write_m_header _ANSI_ARGS_((
124 j_compress_ptr cinfo, int marker,
125 unsigned int datalen));
126 /* 24 */
127 EXTERN void jpeg_write_m_byte _ANSI_ARGS_((j_compress_ptr cinfo,
128 int val));
129 /* 25 */
130 EXTERN void jpeg_write_tables _ANSI_ARGS_((j_compress_ptr cinfo));
131 /* 26 */
132 EXTERN int jpeg_read_header _ANSI_ARGS_((j_decompress_ptr cinfo,
133 boolean require_image));
134 /* 27 */
135 EXTERN boolean jpeg_start_decompress _ANSI_ARGS_((
136 j_decompress_ptr cinfo));
137 /* 28 */
138 EXTERN JDIMENSION jpeg_read_scanlines _ANSI_ARGS_((
139 j_decompress_ptr cinfo, JSAMPARRAY scanlines,
140 JDIMENSION max_lines));
141 /* 29 */
142 EXTERN boolean jpeg_finish_decompress _ANSI_ARGS_((
143 j_decompress_ptr cinfo));
144 /* 30 */
145 EXTERN JDIMENSION jpeg_read_raw_data _ANSI_ARGS_((
146 j_decompress_ptr cinfo, JSAMPIMAGE data,
147 JDIMENSION max_lines));
148 /* 31 */
149 EXTERN boolean jpeg_has_multiple_scans _ANSI_ARGS_((
150 j_decompress_ptr cinfo));
151 /* 32 */
152 EXTERN boolean jpeg_start_output _ANSI_ARGS_((
153 j_decompress_ptr cinfo, int scan_number));
154 /* 33 */
155 EXTERN boolean jpeg_finish_output _ANSI_ARGS_((
156 j_decompress_ptr cinfo));
157 /* 34 */
158 EXTERN boolean jpeg_input_complete _ANSI_ARGS_((
159 j_decompress_ptr cinfo));
160 /* 35 */
161 EXTERN void jpeg_new_colormap _ANSI_ARGS_((
162 j_decompress_ptr cinfo));
163 /* 36 */
164 EXTERN int jpeg_consume_input _ANSI_ARGS_((
165 j_decompress_ptr cinfo));
166 /* 37 */
167 EXTERN void jpeg_calc_output_dimensions _ANSI_ARGS_((
168 j_decompress_ptr cinfo));
169 /* 38 */
170 EXTERN void jpeg_save_markers _ANSI_ARGS_((
171 j_decompress_ptr cinfo, int marker_code,
172 unsigned int length_limit));
173 /* 39 */
174 EXTERN void jpeg_set_marker_processor _ANSI_ARGS_((
175 j_decompress_ptr cinfo, int marker_code,
176 jpeg_marker_parser_method routine));
177 /* 40 */
178 EXTERN jvirt_barray_ptr * jpeg_read_coefficients _ANSI_ARGS_((
179 j_decompress_ptr cinfo));
180 /* 41 */
181 EXTERN void jpeg_write_coefficients _ANSI_ARGS_((
182 j_compress_ptr cinfo,
183 jvirt_barray_ptr * coef_arrays));
184 /* 42 */
185 EXTERN void jpeg_copy_critical_parameters _ANSI_ARGS_((
186 j_decompress_ptr srcinfo,
187 j_compress_ptr dstinfo));
188 /* 43 */
189 EXTERN void jpeg_abort_compress _ANSI_ARGS_((
190 j_compress_ptr cinfo));
191 /* 44 */
192 EXTERN void jpeg_abort_decompress _ANSI_ARGS_((
193 j_decompress_ptr cinfo));
194 /* 45 */
195 EXTERN void jpeg_abort _ANSI_ARGS_((j_common_ptr cinfo));
196 /* 46 */
197 EXTERN void jpeg_destroy _ANSI_ARGS_((j_common_ptr cinfo));
198 /* 47 */
199 EXTERN boolean jpeg_resync_to_restart _ANSI_ARGS_((
200 j_decompress_ptr cinfo, int desired));
202 typedef struct JpegtclStubs {
203 int magic;
204 struct JpegtclStubHooks *hooks;
206 struct jpeg_error_mgr * (*jpeg_std_error) _ANSI_ARGS_((struct jpeg_error_mgr * err)); /* 0 */
207 void (*jpeg_CreateCompress) _ANSI_ARGS_((j_compress_ptr cinfo, int version, size_t structsize)); /* 1 */
208 void (*jpeg_CreateDecompress) _ANSI_ARGS_((j_decompress_ptr cinfo, int version, size_t structsize)); /* 2 */
209 void (*jpeg_destroy_compress) _ANSI_ARGS_((j_compress_ptr cinfo)); /* 3 */
210 void (*jpeg_destroy_decompress) _ANSI_ARGS_((j_decompress_ptr cinfo)); /* 4 */
211 void (*jpeg_stdio_dest) _ANSI_ARGS_((j_compress_ptr cinfo, FILE * outfile)); /* 5 */
212 void (*jpeg_stdio_src) _ANSI_ARGS_((j_decompress_ptr cinfo, FILE * infile)); /* 6 */
213 void (*jpeg_set_defaults) _ANSI_ARGS_((j_compress_ptr cinfo)); /* 7 */
214 void (*jpeg_set_colorspace) _ANSI_ARGS_((j_compress_ptr cinfo, J_COLOR_SPACE colorspace)); /* 8 */
215 void (*jpeg_default_colorspace) _ANSI_ARGS_((j_compress_ptr cinfo)); /* 9 */
216 void (*jpeg_set_quality) _ANSI_ARGS_((j_compress_ptr cinfo, int quality, boolean force_baseline)); /* 10 */
217 void (*jpeg_set_linear_quality) _ANSI_ARGS_((j_compress_ptr cinfo, int scale_factor, boolean force_baseline)); /* 11 */
218 void (*jpeg_add_quant_table) _ANSI_ARGS_((j_compress_ptr cinfo, int which_tbl, const unsigned int * basic_table, int scale_factor, boolean force_baseline)); /* 12 */
219 int (*jpeg_quality_scaling) _ANSI_ARGS_((int quality)); /* 13 */
220 void (*jpeg_simple_progression) _ANSI_ARGS_((j_compress_ptr cinfo)); /* 14 */
221 void (*jpeg_suppress_tables) _ANSI_ARGS_((j_compress_ptr cinfo, boolean suppress)); /* 15 */
222 JQUANT_TBL * (*jpeg_alloc_quant_table) _ANSI_ARGS_((j_common_ptr cinfo)); /* 16 */
223 JHUFF_TBL * (*jpeg_alloc_huff_table) _ANSI_ARGS_((j_common_ptr cinfo)); /* 17 */
224 void (*jpeg_start_compress) _ANSI_ARGS_((j_compress_ptr cinfo, boolean write_all_tables)); /* 18 */
225 JDIMENSION (*jpeg_write_scanlines) _ANSI_ARGS_((j_compress_ptr cinfo, JSAMPARRAY scanlines, JDIMENSION num_lines)); /* 19 */
226 void (*jpeg_finish_compress) _ANSI_ARGS_((j_compress_ptr cinfo)); /* 20 */
227 JDIMENSION (*jpeg_write_raw_data) _ANSI_ARGS_((j_compress_ptr cinfo, JSAMPIMAGE data, JDIMENSION num_lines)); /* 21 */
228 void (*jpeg_write_marker) _ANSI_ARGS_((j_compress_ptr cinfo, int marker, const JOCTET * dataptr, unsigned int datalen)); /* 22 */
229 void (*jpeg_write_m_header) _ANSI_ARGS_((j_compress_ptr cinfo, int marker, unsigned int datalen)); /* 23 */
230 void (*jpeg_write_m_byte) _ANSI_ARGS_((j_compress_ptr cinfo, int val)); /* 24 */
231 void (*jpeg_write_tables) _ANSI_ARGS_((j_compress_ptr cinfo)); /* 25 */
232 int (*jpeg_read_header) _ANSI_ARGS_((j_decompress_ptr cinfo, boolean require_image)); /* 26 */
233 boolean (*jpeg_start_decompress) _ANSI_ARGS_((j_decompress_ptr cinfo)); /* 27 */
234 JDIMENSION (*jpeg_read_scanlines) _ANSI_ARGS_((j_decompress_ptr cinfo, JSAMPARRAY scanlines, JDIMENSION max_lines)); /* 28 */
235 boolean (*jpeg_finish_decompress) _ANSI_ARGS_((j_decompress_ptr cinfo)); /* 29 */
236 JDIMENSION (*jpeg_read_raw_data) _ANSI_ARGS_((j_decompress_ptr cinfo, JSAMPIMAGE data, JDIMENSION max_lines)); /* 30 */
237 boolean (*jpeg_has_multiple_scans) _ANSI_ARGS_((j_decompress_ptr cinfo)); /* 31 */
238 boolean (*jpeg_start_output) _ANSI_ARGS_((j_decompress_ptr cinfo, int scan_number)); /* 32 */
239 boolean (*jpeg_finish_output) _ANSI_ARGS_((j_decompress_ptr cinfo)); /* 33 */
240 boolean (*jpeg_input_complete) _ANSI_ARGS_((j_decompress_ptr cinfo)); /* 34 */
241 void (*jpeg_new_colormap) _ANSI_ARGS_((j_decompress_ptr cinfo)); /* 35 */
242 int (*jpeg_consume_input) _ANSI_ARGS_((j_decompress_ptr cinfo)); /* 36 */
243 void (*jpeg_calc_output_dimensions) _ANSI_ARGS_((j_decompress_ptr cinfo)); /* 37 */
244 void (*jpeg_save_markers) _ANSI_ARGS_((j_decompress_ptr cinfo, int marker_code, unsigned int length_limit)); /* 38 */
245 void (*jpeg_set_marker_processor) _ANSI_ARGS_((j_decompress_ptr cinfo, int marker_code, jpeg_marker_parser_method routine)); /* 39 */
246 jvirt_barray_ptr * (*jpeg_read_coefficients) _ANSI_ARGS_((j_decompress_ptr cinfo)); /* 40 */
247 void (*jpeg_write_coefficients) _ANSI_ARGS_((j_compress_ptr cinfo, jvirt_barray_ptr * coef_arrays)); /* 41 */
248 void (*jpeg_copy_critical_parameters) _ANSI_ARGS_((j_decompress_ptr srcinfo, j_compress_ptr dstinfo)); /* 42 */
249 void (*jpeg_abort_compress) _ANSI_ARGS_((j_compress_ptr cinfo)); /* 43 */
250 void (*jpeg_abort_decompress) _ANSI_ARGS_((j_decompress_ptr cinfo)); /* 44 */
251 void (*jpeg_abort) _ANSI_ARGS_((j_common_ptr cinfo)); /* 45 */
252 void (*jpeg_destroy) _ANSI_ARGS_((j_common_ptr cinfo)); /* 46 */
253 boolean (*jpeg_resync_to_restart) _ANSI_ARGS_((j_decompress_ptr cinfo, int desired)); /* 47 */
254 } JpegtclStubs;
256 #ifdef __cplusplus
257 extern "C" {
258 #endif
259 extern JpegtclStubs *jpegtclStubsPtr;
260 #ifdef __cplusplus
262 #endif
264 #if defined(USE_JPEGTCL_STUBS) && !defined(USE_JPEGTCL_STUB_PROCS)
267 * Inline function declarations:
270 #ifndef jpeg_std_error
271 #define jpeg_std_error \
272 (jpegtclStubsPtr->jpeg_std_error) /* 0 */
273 #endif
274 #ifndef jpeg_CreateCompress
275 #define jpeg_CreateCompress \
276 (jpegtclStubsPtr->jpeg_CreateCompress) /* 1 */
277 #endif
278 #ifndef jpeg_CreateDecompress
279 #define jpeg_CreateDecompress \
280 (jpegtclStubsPtr->jpeg_CreateDecompress) /* 2 */
281 #endif
282 #ifndef jpeg_destroy_compress
283 #define jpeg_destroy_compress \
284 (jpegtclStubsPtr->jpeg_destroy_compress) /* 3 */
285 #endif
286 #ifndef jpeg_destroy_decompress
287 #define jpeg_destroy_decompress \
288 (jpegtclStubsPtr->jpeg_destroy_decompress) /* 4 */
289 #endif
290 #ifndef jpeg_stdio_dest
291 #define jpeg_stdio_dest \
292 (jpegtclStubsPtr->jpeg_stdio_dest) /* 5 */
293 #endif
294 #ifndef jpeg_stdio_src
295 #define jpeg_stdio_src \
296 (jpegtclStubsPtr->jpeg_stdio_src) /* 6 */
297 #endif
298 #ifndef jpeg_set_defaults
299 #define jpeg_set_defaults \
300 (jpegtclStubsPtr->jpeg_set_defaults) /* 7 */
301 #endif
302 #ifndef jpeg_set_colorspace
303 #define jpeg_set_colorspace \
304 (jpegtclStubsPtr->jpeg_set_colorspace) /* 8 */
305 #endif
306 #ifndef jpeg_default_colorspace
307 #define jpeg_default_colorspace \
308 (jpegtclStubsPtr->jpeg_default_colorspace) /* 9 */
309 #endif
310 #ifndef jpeg_set_quality
311 #define jpeg_set_quality \
312 (jpegtclStubsPtr->jpeg_set_quality) /* 10 */
313 #endif
314 #ifndef jpeg_set_linear_quality
315 #define jpeg_set_linear_quality \
316 (jpegtclStubsPtr->jpeg_set_linear_quality) /* 11 */
317 #endif
318 #ifndef jpeg_add_quant_table
319 #define jpeg_add_quant_table \
320 (jpegtclStubsPtr->jpeg_add_quant_table) /* 12 */
321 #endif
322 #ifndef jpeg_quality_scaling
323 #define jpeg_quality_scaling \
324 (jpegtclStubsPtr->jpeg_quality_scaling) /* 13 */
325 #endif
326 #ifndef jpeg_simple_progression
327 #define jpeg_simple_progression \
328 (jpegtclStubsPtr->jpeg_simple_progression) /* 14 */
329 #endif
330 #ifndef jpeg_suppress_tables
331 #define jpeg_suppress_tables \
332 (jpegtclStubsPtr->jpeg_suppress_tables) /* 15 */
333 #endif
334 #ifndef jpeg_alloc_quant_table
335 #define jpeg_alloc_quant_table \
336 (jpegtclStubsPtr->jpeg_alloc_quant_table) /* 16 */
337 #endif
338 #ifndef jpeg_alloc_huff_table
339 #define jpeg_alloc_huff_table \
340 (jpegtclStubsPtr->jpeg_alloc_huff_table) /* 17 */
341 #endif
342 #ifndef jpeg_start_compress
343 #define jpeg_start_compress \
344 (jpegtclStubsPtr->jpeg_start_compress) /* 18 */
345 #endif
346 #ifndef jpeg_write_scanlines
347 #define jpeg_write_scanlines \
348 (jpegtclStubsPtr->jpeg_write_scanlines) /* 19 */
349 #endif
350 #ifndef jpeg_finish_compress
351 #define jpeg_finish_compress \
352 (jpegtclStubsPtr->jpeg_finish_compress) /* 20 */
353 #endif
354 #ifndef jpeg_write_raw_data
355 #define jpeg_write_raw_data \
356 (jpegtclStubsPtr->jpeg_write_raw_data) /* 21 */
357 #endif
358 #ifndef jpeg_write_marker
359 #define jpeg_write_marker \
360 (jpegtclStubsPtr->jpeg_write_marker) /* 22 */
361 #endif
362 #ifndef jpeg_write_m_header
363 #define jpeg_write_m_header \
364 (jpegtclStubsPtr->jpeg_write_m_header) /* 23 */
365 #endif
366 #ifndef jpeg_write_m_byte
367 #define jpeg_write_m_byte \
368 (jpegtclStubsPtr->jpeg_write_m_byte) /* 24 */
369 #endif
370 #ifndef jpeg_write_tables
371 #define jpeg_write_tables \
372 (jpegtclStubsPtr->jpeg_write_tables) /* 25 */
373 #endif
374 #ifndef jpeg_read_header
375 #define jpeg_read_header \
376 (jpegtclStubsPtr->jpeg_read_header) /* 26 */
377 #endif
378 #ifndef jpeg_start_decompress
379 #define jpeg_start_decompress \
380 (jpegtclStubsPtr->jpeg_start_decompress) /* 27 */
381 #endif
382 #ifndef jpeg_read_scanlines
383 #define jpeg_read_scanlines \
384 (jpegtclStubsPtr->jpeg_read_scanlines) /* 28 */
385 #endif
386 #ifndef jpeg_finish_decompress
387 #define jpeg_finish_decompress \
388 (jpegtclStubsPtr->jpeg_finish_decompress) /* 29 */
389 #endif
390 #ifndef jpeg_read_raw_data
391 #define jpeg_read_raw_data \
392 (jpegtclStubsPtr->jpeg_read_raw_data) /* 30 */
393 #endif
394 #ifndef jpeg_has_multiple_scans
395 #define jpeg_has_multiple_scans \
396 (jpegtclStubsPtr->jpeg_has_multiple_scans) /* 31 */
397 #endif
398 #ifndef jpeg_start_output
399 #define jpeg_start_output \
400 (jpegtclStubsPtr->jpeg_start_output) /* 32 */
401 #endif
402 #ifndef jpeg_finish_output
403 #define jpeg_finish_output \
404 (jpegtclStubsPtr->jpeg_finish_output) /* 33 */
405 #endif
406 #ifndef jpeg_input_complete
407 #define jpeg_input_complete \
408 (jpegtclStubsPtr->jpeg_input_complete) /* 34 */
409 #endif
410 #ifndef jpeg_new_colormap
411 #define jpeg_new_colormap \
412 (jpegtclStubsPtr->jpeg_new_colormap) /* 35 */
413 #endif
414 #ifndef jpeg_consume_input
415 #define jpeg_consume_input \
416 (jpegtclStubsPtr->jpeg_consume_input) /* 36 */
417 #endif
418 #ifndef jpeg_calc_output_dimensions
419 #define jpeg_calc_output_dimensions \
420 (jpegtclStubsPtr->jpeg_calc_output_dimensions) /* 37 */
421 #endif
422 #ifndef jpeg_save_markers
423 #define jpeg_save_markers \
424 (jpegtclStubsPtr->jpeg_save_markers) /* 38 */
425 #endif
426 #ifndef jpeg_set_marker_processor
427 #define jpeg_set_marker_processor \
428 (jpegtclStubsPtr->jpeg_set_marker_processor) /* 39 */
429 #endif
430 #ifndef jpeg_read_coefficients
431 #define jpeg_read_coefficients \
432 (jpegtclStubsPtr->jpeg_read_coefficients) /* 40 */
433 #endif
434 #ifndef jpeg_write_coefficients
435 #define jpeg_write_coefficients \
436 (jpegtclStubsPtr->jpeg_write_coefficients) /* 41 */
437 #endif
438 #ifndef jpeg_copy_critical_parameters
439 #define jpeg_copy_critical_parameters \
440 (jpegtclStubsPtr->jpeg_copy_critical_parameters) /* 42 */
441 #endif
442 #ifndef jpeg_abort_compress
443 #define jpeg_abort_compress \
444 (jpegtclStubsPtr->jpeg_abort_compress) /* 43 */
445 #endif
446 #ifndef jpeg_abort_decompress
447 #define jpeg_abort_decompress \
448 (jpegtclStubsPtr->jpeg_abort_decompress) /* 44 */
449 #endif
450 #ifndef jpeg_abort
451 #define jpeg_abort \
452 (jpegtclStubsPtr->jpeg_abort) /* 45 */
453 #endif
454 #ifndef jpeg_destroy
455 #define jpeg_destroy \
456 (jpegtclStubsPtr->jpeg_destroy) /* 46 */
457 #endif
458 #ifndef jpeg_resync_to_restart
459 #define jpeg_resync_to_restart \
460 (jpegtclStubsPtr->jpeg_resync_to_restart) /* 47 */
461 #endif
463 #endif /* defined(USE_JPEGTCL_STUBS) && !defined(USE_JPEGTCL_STUB_PROCS) */
465 /* !END!: Do not edit above this line. */
467 #endif /* _JPEGTCLDECLS */