Codebase list libhtml-template-pro-perl / debian/0.9510-1 proparam.h
debian/0.9510-1

Tree @debian/0.9510-1 (Download .tar.gz)

proparam.h @debian/0.9510-1raw · history · blame

  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
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
/*! \file proparam.h
    \brief Getters and setters for libhtmltmplpro options.

    Public interface to get and set libhtmltmplpro options.
 
    \author Igor Vlasenko <vlasenko@imath.kiev.ua>
    \warning This header file should never be included directly.
    Include <tmplpro.h> instead.
*/

/* generated; do not edit */
#ifndef _PROPARAM_H
#define _PROPARAM_H	1

struct tmplpro_param;

/*! \fn int tmplpro_get_option_global_vars(struct tmplpro_param*);
    \brief get value of global_vars option.

    see HTML::Template::Pro perl module documentation for global_vars option.

    \param param -- pointer to an internal state.
*/
TMPLPRO_API int APICALL tmplpro_get_option_global_vars(struct tmplpro_param*);

/*! \fn void tmplpro_set_option_global_vars(struct tmplpro_param*,int);
    \brief set value of global_vars option.

    see HTML::Template::Pro perl module documentation for global_vars option.

    \param param -- pointer to an internal state.
    \param val -- value to set.
*/
TMPLPRO_API void APICALL tmplpro_set_option_global_vars(struct tmplpro_param*,int);

/*! \fn int tmplpro_get_option_max_includes(struct tmplpro_param*);
    \brief get value of max_includes option.

    see HTML::Template::Pro perl module documentation for max_includes option.

    \param param -- pointer to an internal state.
*/
TMPLPRO_API int APICALL tmplpro_get_option_max_includes(struct tmplpro_param*);

/*! \fn void tmplpro_set_option_max_includes(struct tmplpro_param*,int);
    \brief set value of max_includes option.

    see HTML::Template::Pro perl module documentation for max_includes option.

    \param param -- pointer to an internal state.
    \param val -- value to set.
*/
TMPLPRO_API void APICALL tmplpro_set_option_max_includes(struct tmplpro_param*,int);

/*! \fn int tmplpro_get_option_debug(struct tmplpro_param*);
    \brief get value of debug option.

    see HTML::Template::Pro perl module documentation for debug option.

    \param param -- pointer to an internal state.
*/
TMPLPRO_API int APICALL tmplpro_get_option_debug(struct tmplpro_param*);

/*! \fn void tmplpro_set_option_debug(struct tmplpro_param*,int);
    \brief set value of debug option.

    see HTML::Template::Pro perl module documentation for debug option.

    \param param -- pointer to an internal state.
    \param val -- value to set.
*/
TMPLPRO_API void APICALL tmplpro_set_option_debug(struct tmplpro_param*,int);

/*! \fn int tmplpro_get_option_tmpl_var_case(struct tmplpro_param*);
    \brief get value of tmpl_var_case option.

    see HTML::Template::Pro perl module documentation for tmpl_var_case option.

    \param param -- pointer to an internal state.
*/
TMPLPRO_API int APICALL tmplpro_get_option_tmpl_var_case(struct tmplpro_param*);

/*! \fn void tmplpro_set_option_tmpl_var_case(struct tmplpro_param*,int);
    \brief set value of tmpl_var_case option.

    see HTML::Template::Pro perl module documentation for tmpl_var_case option.

    \param param -- pointer to an internal state.
    \param val -- value to set.
*/
TMPLPRO_API void APICALL tmplpro_set_option_tmpl_var_case(struct tmplpro_param*,int);

/*! \fn int tmplpro_get_option_no_includes(struct tmplpro_param*);
    \brief get value of no_includes option.

    see HTML::Template::Pro perl module documentation for no_includes option.

    \param param -- pointer to an internal state.
*/
TMPLPRO_API int APICALL tmplpro_get_option_no_includes(struct tmplpro_param*);

/*! \fn void tmplpro_set_option_no_includes(struct tmplpro_param*,int);
    \brief set value of no_includes option.

    see HTML::Template::Pro perl module documentation for no_includes option.

    \param param -- pointer to an internal state.
    \param val -- value to set.
*/
TMPLPRO_API void APICALL tmplpro_set_option_no_includes(struct tmplpro_param*,int);

/*! \fn int tmplpro_get_option_loop_context_vars(struct tmplpro_param*);
    \brief get value of loop_context_vars option.

    see HTML::Template::Pro perl module documentation for loop_context_vars option.

    \param param -- pointer to an internal state.
*/
TMPLPRO_API int APICALL tmplpro_get_option_loop_context_vars(struct tmplpro_param*);

/*! \fn void tmplpro_set_option_loop_context_vars(struct tmplpro_param*,int);
    \brief set value of loop_context_vars option.

    see HTML::Template::Pro perl module documentation for loop_context_vars option.

    \param param -- pointer to an internal state.
    \param val -- value to set.
*/
TMPLPRO_API void APICALL tmplpro_set_option_loop_context_vars(struct tmplpro_param*,int);

/*! \fn int tmplpro_get_option_strict(struct tmplpro_param*);
    \brief get value of strict option.

    see HTML::Template::Pro perl module documentation for strict option.

    \param param -- pointer to an internal state.
*/
TMPLPRO_API int APICALL tmplpro_get_option_strict(struct tmplpro_param*);

/*! \fn void tmplpro_set_option_strict(struct tmplpro_param*,int);
    \brief set value of strict option.

    see HTML::Template::Pro perl module documentation for strict option.

    \param param -- pointer to an internal state.
    \param val -- value to set.
*/
TMPLPRO_API void APICALL tmplpro_set_option_strict(struct tmplpro_param*,int);

/*! \fn int tmplpro_get_option_filters(struct tmplpro_param*);
    \brief get value of filters option.

    see HTML::Template::Pro perl module documentation for filters option.

    \param param -- pointer to an internal state.
*/
TMPLPRO_API int APICALL tmplpro_get_option_filters(struct tmplpro_param*);

/*! \fn void tmplpro_set_option_filters(struct tmplpro_param*,int);
    \brief set value of filters option.

    see HTML::Template::Pro perl module documentation for filters option.

    \param param -- pointer to an internal state.
    \param val -- value to set.
*/
TMPLPRO_API void APICALL tmplpro_set_option_filters(struct tmplpro_param*,int);

/*! \fn int tmplpro_get_option_default_escape(struct tmplpro_param*);
    \brief get value of default_escape option.

    see HTML::Template::Pro perl module documentation for default_escape option.

    \param param -- pointer to an internal state.
*/
TMPLPRO_API int APICALL tmplpro_get_option_default_escape(struct tmplpro_param*);

/*! \fn void tmplpro_set_option_default_escape(struct tmplpro_param*,int);
    \brief set value of default_escape option.

    see HTML::Template::Pro perl module documentation for default_escape option.

    \param param -- pointer to an internal state.
    \param val -- value to set.
*/
TMPLPRO_API void APICALL tmplpro_set_option_default_escape(struct tmplpro_param*,int);

/*! \fn const char* tmplpro_get_option_filename(struct tmplpro_param*);
    \brief get value of filename option.

    see HTML::Template::Pro perl module documentation for filename option.

    \param param -- pointer to an internal state.
*/
TMPLPRO_API const char* APICALL tmplpro_get_option_filename(struct tmplpro_param*);

/*! \fn void tmplpro_set_option_filename(struct tmplpro_param*,const char*);
    \brief set value of filename option.

    see HTML::Template::Pro perl module documentation for filename option.

    \param param -- pointer to an internal state.
    \param val -- value to set.
*/
TMPLPRO_API void APICALL tmplpro_set_option_filename(struct tmplpro_param*,const char*);

/*! \fn PSTRING tmplpro_get_option_scalarref(struct tmplpro_param*);
    \brief get value of scalarref option.

    see HTML::Template::Pro perl module documentation for scalarref option.

    \param param -- pointer to an internal state.
*/
TMPLPRO_API PSTRING APICALL tmplpro_get_option_scalarref(struct tmplpro_param*);

/*! \fn void tmplpro_set_option_scalarref(struct tmplpro_param*,PSTRING);
    \brief set value of scalarref option.

    see HTML::Template::Pro perl module documentation for scalarref option.

    \param param -- pointer to an internal state.
    \param val -- value to set.
*/
TMPLPRO_API void APICALL tmplpro_set_option_scalarref(struct tmplpro_param*,PSTRING);

/*! \fn int tmplpro_get_option_path_like_variable_scope(struct tmplpro_param*);
    \brief get value of path_like_variable_scope option.

    see HTML::Template::Pro perl module documentation for path_like_variable_scope option.

    \param param -- pointer to an internal state.
*/
TMPLPRO_API int APICALL tmplpro_get_option_path_like_variable_scope(struct tmplpro_param*);

/*! \fn void tmplpro_set_option_path_like_variable_scope(struct tmplpro_param*,int);
    \brief set value of path_like_variable_scope option.

    see HTML::Template::Pro perl module documentation for path_like_variable_scope option.

    \param param -- pointer to an internal state.
    \param val -- value to set.
*/
TMPLPRO_API void APICALL tmplpro_set_option_path_like_variable_scope(struct tmplpro_param*,int);

/*! \fn int tmplpro_get_option_search_path_on_include(struct tmplpro_param*);
    \brief get value of search_path_on_include option.

    see HTML::Template::Pro perl module documentation for search_path_on_include option.

    \param param -- pointer to an internal state.
*/
TMPLPRO_API int APICALL tmplpro_get_option_search_path_on_include(struct tmplpro_param*);

/*! \fn void tmplpro_set_option_search_path_on_include(struct tmplpro_param*,int);
    \brief set value of search_path_on_include option.

    see HTML::Template::Pro perl module documentation for search_path_on_include option.

    \param param -- pointer to an internal state.
    \param val -- value to set.
*/
TMPLPRO_API void APICALL tmplpro_set_option_search_path_on_include(struct tmplpro_param*,int);

/*! \fn char** tmplpro_get_option_path(struct tmplpro_param*);
    \brief get value of path option.

    see HTML::Template::Pro perl module documentation for path option.

    \param param -- pointer to an internal state.
*/
TMPLPRO_API char** APICALL tmplpro_get_option_path(struct tmplpro_param*);

/*! \fn void tmplpro_set_option_path(struct tmplpro_param*,char**);
    \brief set value of path option.

    see HTML::Template::Pro perl module documentation for path option.

    \param param -- pointer to an internal state.
    \param val -- value to set.
*/
TMPLPRO_API void APICALL tmplpro_set_option_path(struct tmplpro_param*,char**);

/*! \fn char* tmplpro_get_option_template_root(struct tmplpro_param*);
    \brief get value of template_root option.

    see HTML::Template::Pro perl module documentation for template_root option.

    \param param -- pointer to an internal state.
*/
TMPLPRO_API char* APICALL tmplpro_get_option_template_root(struct tmplpro_param*);

/*! \fn void tmplpro_set_option_template_root(struct tmplpro_param*,char*);
    \brief set value of template_root option.

    see HTML::Template::Pro perl module documentation for template_root option.

    \param param -- pointer to an internal state.
    \param val -- value to set.
*/
TMPLPRO_API void APICALL tmplpro_set_option_template_root(struct tmplpro_param*,char*);

/*! \fn writer_functype tmplpro_get_option_WriterFuncPtr(struct tmplpro_param*);
    \brief get address of callback of ::writer_functype
    \param param -- pointer to an internal state.
*/
TMPLPRO_API writer_functype APICALL tmplpro_get_option_WriterFuncPtr(struct tmplpro_param*);

/*! \fn void tmplpro_set_option_WriterFuncPtr(struct tmplpro_param*,writer_functype);
    \brief set callback of ::writer_functype
    \param param -- pointer to an internal state.
    \param val -- callback address to set.
*/
TMPLPRO_API void APICALL tmplpro_set_option_WriterFuncPtr(struct tmplpro_param*,writer_functype);

/*! \fn get_ABSTRACT_VALUE_functype tmplpro_get_option_GetAbstractValFuncPtr(struct tmplpro_param*);
    \brief get address of callback of ::get_ABSTRACT_VALUE_functype
    \param param -- pointer to an internal state.
*/
TMPLPRO_API get_ABSTRACT_VALUE_functype APICALL tmplpro_get_option_GetAbstractValFuncPtr(struct tmplpro_param*);

/*! \fn void tmplpro_set_option_GetAbstractValFuncPtr(struct tmplpro_param*,get_ABSTRACT_VALUE_functype);
    \brief set callback of ::get_ABSTRACT_VALUE_functype
    \param param -- pointer to an internal state.
    \param val -- callback address to set.
*/
TMPLPRO_API void APICALL tmplpro_set_option_GetAbstractValFuncPtr(struct tmplpro_param*,get_ABSTRACT_VALUE_functype);

/*! \fn ABSTRACT_VALUE2PSTRING_functype tmplpro_get_option_AbstractVal2pstringFuncPtr(struct tmplpro_param*);
    \brief get address of callback of ::ABSTRACT_VALUE2PSTRING_functype
    \param param -- pointer to an internal state.
*/
TMPLPRO_API ABSTRACT_VALUE2PSTRING_functype APICALL tmplpro_get_option_AbstractVal2pstringFuncPtr(struct tmplpro_param*);

/*! \fn void tmplpro_set_option_AbstractVal2pstringFuncPtr(struct tmplpro_param*,ABSTRACT_VALUE2PSTRING_functype);
    \brief set callback of ::ABSTRACT_VALUE2PSTRING_functype
    \param param -- pointer to an internal state.
    \param val -- callback address to set.
*/
TMPLPRO_API void APICALL tmplpro_set_option_AbstractVal2pstringFuncPtr(struct tmplpro_param*,ABSTRACT_VALUE2PSTRING_functype);

/*! \fn ABSTRACT_VALUE2ABSTRACT_ARRAY_functype tmplpro_get_option_AbstractVal2abstractArrayFuncPtr(struct tmplpro_param*);
    \brief get address of callback of ::ABSTRACT_VALUE2ABSTRACT_ARRAY_functype
    \param param -- pointer to an internal state.
*/
TMPLPRO_API ABSTRACT_VALUE2ABSTRACT_ARRAY_functype APICALL tmplpro_get_option_AbstractVal2abstractArrayFuncPtr(struct tmplpro_param*);

/*! \fn void tmplpro_set_option_AbstractVal2abstractArrayFuncPtr(struct tmplpro_param*,ABSTRACT_VALUE2ABSTRACT_ARRAY_functype);
    \brief set callback of ::ABSTRACT_VALUE2ABSTRACT_ARRAY_functype
    \param param -- pointer to an internal state.
    \param val -- callback address to set.
*/
TMPLPRO_API void APICALL tmplpro_set_option_AbstractVal2abstractArrayFuncPtr(struct tmplpro_param*,ABSTRACT_VALUE2ABSTRACT_ARRAY_functype);

/*! \fn get_ABSTRACT_ARRAY_length_functype tmplpro_get_option_GetAbstractArrayLengthFuncPtr(struct tmplpro_param*);
    \brief get address of callback of ::get_ABSTRACT_ARRAY_length_functype
    \param param -- pointer to an internal state.
*/
TMPLPRO_API get_ABSTRACT_ARRAY_length_functype APICALL tmplpro_get_option_GetAbstractArrayLengthFuncPtr(struct tmplpro_param*);

/*! \fn void tmplpro_set_option_GetAbstractArrayLengthFuncPtr(struct tmplpro_param*,get_ABSTRACT_ARRAY_length_functype);
    \brief set callback of ::get_ABSTRACT_ARRAY_length_functype
    \param param -- pointer to an internal state.
    \param val -- callback address to set.
*/
TMPLPRO_API void APICALL tmplpro_set_option_GetAbstractArrayLengthFuncPtr(struct tmplpro_param*,get_ABSTRACT_ARRAY_length_functype);

/*! \fn get_ABSTRACT_MAP_functype tmplpro_get_option_GetAbstractMapFuncPtr(struct tmplpro_param*);
    \brief get address of callback of ::get_ABSTRACT_MAP_functype
    \param param -- pointer to an internal state.
*/
TMPLPRO_API get_ABSTRACT_MAP_functype APICALL tmplpro_get_option_GetAbstractMapFuncPtr(struct tmplpro_param*);

/*! \fn void tmplpro_set_option_GetAbstractMapFuncPtr(struct tmplpro_param*,get_ABSTRACT_MAP_functype);
    \brief set callback of ::get_ABSTRACT_MAP_functype
    \param param -- pointer to an internal state.
    \param val -- callback address to set.
*/
TMPLPRO_API void APICALL tmplpro_set_option_GetAbstractMapFuncPtr(struct tmplpro_param*,get_ABSTRACT_MAP_functype);

/*! \fn is_ABSTRACT_VALUE_true_functype tmplpro_get_option_IsAbstractValTrueFuncPtr(struct tmplpro_param*);
    \brief get address of callback of ::is_ABSTRACT_VALUE_true_functype
    \param param -- pointer to an internal state.
*/
TMPLPRO_API is_ABSTRACT_VALUE_true_functype APICALL tmplpro_get_option_IsAbstractValTrueFuncPtr(struct tmplpro_param*);

/*! \fn void tmplpro_set_option_IsAbstractValTrueFuncPtr(struct tmplpro_param*,is_ABSTRACT_VALUE_true_functype);
    \brief set callback of ::is_ABSTRACT_VALUE_true_functype
    \param param -- pointer to an internal state.
    \param val -- callback address to set.
*/
TMPLPRO_API void APICALL tmplpro_set_option_IsAbstractValTrueFuncPtr(struct tmplpro_param*,is_ABSTRACT_VALUE_true_functype);

/*! \fn find_file_functype tmplpro_get_option_FindFileFuncPtr(struct tmplpro_param*);
    \brief get address of callback of ::find_file_functype
    \param param -- pointer to an internal state.
*/
TMPLPRO_API find_file_functype APICALL tmplpro_get_option_FindFileFuncPtr(struct tmplpro_param*);

/*! \fn void tmplpro_set_option_FindFileFuncPtr(struct tmplpro_param*,find_file_functype);
    \brief set callback of ::find_file_functype
    \param param -- pointer to an internal state.
    \param val -- callback address to set.
*/
TMPLPRO_API void APICALL tmplpro_set_option_FindFileFuncPtr(struct tmplpro_param*,find_file_functype);

/*! \fn load_file_functype tmplpro_get_option_LoadFileFuncPtr(struct tmplpro_param*);
    \brief get address of callback of ::load_file_functype
    \param param -- pointer to an internal state.
*/
TMPLPRO_API load_file_functype APICALL tmplpro_get_option_LoadFileFuncPtr(struct tmplpro_param*);

/*! \fn void tmplpro_set_option_LoadFileFuncPtr(struct tmplpro_param*,load_file_functype);
    \brief set callback of ::load_file_functype
    \param param -- pointer to an internal state.
    \param val -- callback address to set.
*/
TMPLPRO_API void APICALL tmplpro_set_option_LoadFileFuncPtr(struct tmplpro_param*,load_file_functype);

/*! \fn unload_file_functype tmplpro_get_option_UnloadFileFuncPtr(struct tmplpro_param*);
    \brief get address of callback of ::unload_file_functype
    \param param -- pointer to an internal state.
*/
TMPLPRO_API unload_file_functype APICALL tmplpro_get_option_UnloadFileFuncPtr(struct tmplpro_param*);

/*! \fn void tmplpro_set_option_UnloadFileFuncPtr(struct tmplpro_param*,unload_file_functype);
    \brief set callback of ::unload_file_functype
    \param param -- pointer to an internal state.
    \param val -- callback address to set.
*/
TMPLPRO_API void APICALL tmplpro_set_option_UnloadFileFuncPtr(struct tmplpro_param*,unload_file_functype);

/*! \fn exit_loop_scope_functype tmplpro_get_option_ExitLoopScopeFuncPtr(struct tmplpro_param*);
    \brief get address of callback of ::exit_loop_scope_functype
    \param param -- pointer to an internal state.
*/
TMPLPRO_API exit_loop_scope_functype APICALL tmplpro_get_option_ExitLoopScopeFuncPtr(struct tmplpro_param*);

/*! \fn void tmplpro_set_option_ExitLoopScopeFuncPtr(struct tmplpro_param*,exit_loop_scope_functype);
    \brief set callback of ::exit_loop_scope_functype
    \param param -- pointer to an internal state.
    \param val -- callback address to set.
*/
TMPLPRO_API void APICALL tmplpro_set_option_ExitLoopScopeFuncPtr(struct tmplpro_param*,exit_loop_scope_functype);

/*! \fn ABSTRACT_WRITER* tmplpro_get_option_ext_writer_state(struct tmplpro_param*);
    \brief get value of an external pointer that will be passed to a callback. see ::ABSTRACT_WRITER.
    \param param -- pointer to an internal state.
*/
TMPLPRO_API ABSTRACT_WRITER* APICALL tmplpro_get_option_ext_writer_state(struct tmplpro_param*);

/*! \fn void tmplpro_set_option_ext_writer_state(struct tmplpro_param*,ABSTRACT_WRITER*);
    \brief set external pointer that will be passed to a callback. see ::ABSTRACT_WRITER.
    \param param -- pointer to an internal state.
    \param val -- value to set.
*/
TMPLPRO_API void APICALL tmplpro_set_option_ext_writer_state(struct tmplpro_param*,ABSTRACT_WRITER*);

/*! \fn ABSTRACT_FILTER* tmplpro_get_option_ext_filter_state(struct tmplpro_param*);
    \brief get value of an external pointer that will be passed to a callback. see ::ABSTRACT_FILTER.
    \param param -- pointer to an internal state.
*/
TMPLPRO_API ABSTRACT_FILTER* APICALL tmplpro_get_option_ext_filter_state(struct tmplpro_param*);

/*! \fn void tmplpro_set_option_ext_filter_state(struct tmplpro_param*,ABSTRACT_FILTER*);
    \brief set external pointer that will be passed to a callback. see ::ABSTRACT_FILTER.
    \param param -- pointer to an internal state.
    \param val -- value to set.
*/
TMPLPRO_API void APICALL tmplpro_set_option_ext_filter_state(struct tmplpro_param*,ABSTRACT_FILTER*);

/*! \fn ABSTRACT_FINDFILE* tmplpro_get_option_ext_findfile_state(struct tmplpro_param*);
    \brief get value of an external pointer that will be passed to a callback. see ::ABSTRACT_FINDFILE.
    \param param -- pointer to an internal state.
*/
TMPLPRO_API ABSTRACT_FINDFILE* APICALL tmplpro_get_option_ext_findfile_state(struct tmplpro_param*);

/*! \fn void tmplpro_set_option_ext_findfile_state(struct tmplpro_param*,ABSTRACT_FINDFILE*);
    \brief set external pointer that will be passed to a callback. see ::ABSTRACT_FINDFILE.
    \param param -- pointer to an internal state.
    \param val -- value to set.
*/
TMPLPRO_API void APICALL tmplpro_set_option_ext_findfile_state(struct tmplpro_param*,ABSTRACT_FINDFILE*);

/*! \fn ABSTRACT_DATASTATE* tmplpro_get_option_ext_data_state(struct tmplpro_param*);
    \brief get value of an external pointer that will be passed to a callback. see ::ABSTRACT_DATASTATE.
    \param param -- pointer to an internal state.
*/
TMPLPRO_API ABSTRACT_DATASTATE* APICALL tmplpro_get_option_ext_data_state(struct tmplpro_param*);

/*! \fn void tmplpro_set_option_ext_data_state(struct tmplpro_param*,ABSTRACT_DATASTATE*);
    \brief set external pointer that will be passed to a callback. see ::ABSTRACT_DATASTATE.
    \param param -- pointer to an internal state.
    \param val -- value to set.
*/
TMPLPRO_API void APICALL tmplpro_set_option_ext_data_state(struct tmplpro_param*,ABSTRACT_DATASTATE*);

/*! \fn ABSTRACT_CALLER* tmplpro_get_option_ext_calluserfunc_state(struct tmplpro_param*);
    \brief get value of an external pointer that will be passed to a callback. see ::ABSTRACT_CALLER.
    \param param -- pointer to an internal state.
*/
TMPLPRO_API ABSTRACT_CALLER* APICALL tmplpro_get_option_ext_calluserfunc_state(struct tmplpro_param*);

/*! \fn void tmplpro_set_option_ext_calluserfunc_state(struct tmplpro_param*,ABSTRACT_CALLER*);
    \brief set external pointer that will be passed to a callback. see ::ABSTRACT_CALLER.
    \param param -- pointer to an internal state.
    \param val -- value to set.
*/
TMPLPRO_API void APICALL tmplpro_set_option_ext_calluserfunc_state(struct tmplpro_param*,ABSTRACT_CALLER*);

/*! \fn init_expr_arglist_functype tmplpro_get_option_InitExprArglistFuncPtr(struct tmplpro_param*);
    \brief get address of callback of ::init_expr_arglist_functype
    \param param -- pointer to an internal state.
*/
TMPLPRO_API init_expr_arglist_functype APICALL tmplpro_get_option_InitExprArglistFuncPtr(struct tmplpro_param*);

/*! \fn void tmplpro_set_option_InitExprArglistFuncPtr(struct tmplpro_param*,init_expr_arglist_functype);
    \brief set callback of ::init_expr_arglist_functype
    \param param -- pointer to an internal state.
    \param val -- callback address to set.
*/
TMPLPRO_API void APICALL tmplpro_set_option_InitExprArglistFuncPtr(struct tmplpro_param*,init_expr_arglist_functype);

/*! \fn free_expr_arglist_functype tmplpro_get_option_FreeExprArglistFuncPtr(struct tmplpro_param*);
    \brief get address of callback of ::free_expr_arglist_functype
    \param param -- pointer to an internal state.
*/
TMPLPRO_API free_expr_arglist_functype APICALL tmplpro_get_option_FreeExprArglistFuncPtr(struct tmplpro_param*);

/*! \fn void tmplpro_set_option_FreeExprArglistFuncPtr(struct tmplpro_param*,free_expr_arglist_functype);
    \brief set callback of ::free_expr_arglist_functype
    \param param -- pointer to an internal state.
    \param val -- callback address to set.
*/
TMPLPRO_API void APICALL tmplpro_set_option_FreeExprArglistFuncPtr(struct tmplpro_param*,free_expr_arglist_functype);

/*! \fn push_expr_arglist_functype tmplpro_get_option_PushExprArglistFuncPtr(struct tmplpro_param*);
    \brief get address of callback of ::push_expr_arglist_functype
    \param param -- pointer to an internal state.
*/
TMPLPRO_API push_expr_arglist_functype APICALL tmplpro_get_option_PushExprArglistFuncPtr(struct tmplpro_param*);

/*! \fn void tmplpro_set_option_PushExprArglistFuncPtr(struct tmplpro_param*,push_expr_arglist_functype);
    \brief set callback of ::push_expr_arglist_functype
    \param param -- pointer to an internal state.
    \param val -- callback address to set.
*/
TMPLPRO_API void APICALL tmplpro_set_option_PushExprArglistFuncPtr(struct tmplpro_param*,push_expr_arglist_functype);

/*! \fn call_expr_userfnc_functype tmplpro_get_option_CallExprUserfncFuncPtr(struct tmplpro_param*);
    \brief get address of callback of ::call_expr_userfnc_functype
    \param param -- pointer to an internal state.
*/
TMPLPRO_API call_expr_userfnc_functype APICALL tmplpro_get_option_CallExprUserfncFuncPtr(struct tmplpro_param*);

/*! \fn void tmplpro_set_option_CallExprUserfncFuncPtr(struct tmplpro_param*,call_expr_userfnc_functype);
    \brief set callback of ::call_expr_userfnc_functype
    \param param -- pointer to an internal state.
    \param val -- callback address to set.
*/
TMPLPRO_API void APICALL tmplpro_set_option_CallExprUserfncFuncPtr(struct tmplpro_param*,call_expr_userfnc_functype);

/*! \fn is_expr_userfnc_functype tmplpro_get_option_IsExprUserfncFuncPtr(struct tmplpro_param*);
    \brief get address of callback of ::is_expr_userfnc_functype
    \param param -- pointer to an internal state.
*/
TMPLPRO_API is_expr_userfnc_functype APICALL tmplpro_get_option_IsExprUserfncFuncPtr(struct tmplpro_param*);

/*! \fn void tmplpro_set_option_IsExprUserfncFuncPtr(struct tmplpro_param*,is_expr_userfnc_functype);
    \brief set callback of ::is_expr_userfnc_functype
    \param param -- pointer to an internal state.
    \param val -- callback address to set.
*/
TMPLPRO_API void APICALL tmplpro_set_option_IsExprUserfncFuncPtr(struct tmplpro_param*,is_expr_userfnc_functype);

/*! \fn ABSTRACT_FUNCMAP* tmplpro_get_option_expr_func_map(struct tmplpro_param*);
    \brief get value of an external pointer that will be passed to a callback. see ::ABSTRACT_FUNCMAP.
    \param param -- pointer to an internal state.
*/
TMPLPRO_API ABSTRACT_FUNCMAP* APICALL tmplpro_get_option_expr_func_map(struct tmplpro_param*);

/*! \fn void tmplpro_set_option_expr_func_map(struct tmplpro_param*,ABSTRACT_FUNCMAP*);
    \brief set external pointer that will be passed to a callback. see ::ABSTRACT_FUNCMAP.
    \param param -- pointer to an internal state.
    \param val -- value to set.
*/
TMPLPRO_API void APICALL tmplpro_set_option_expr_func_map(struct tmplpro_param*,ABSTRACT_FUNCMAP*);


#endif /* proparam.h */