ITK Function Reference
(V10000.1.0.60_20160308.00)
Main Page
Related Pages
Modules
Data Structures
Files
File List
Globals
ai
aiws_extensions.h
Go to the documentation of this file.
1
/*==============================================================================
2
Copyright (c) 2003-2005 UGS Corporation
3
Unpublished - All Rights Reserved
4
==============================================================================*/
5
14
/* */
15
16
#ifndef AIWS_EXTENSIONS_062804_C_H
17
#define AIWS_EXTENSIONS_062804_C_H
18
25
typedef
int (*
AIWS_Invoke_CBFunc
)(
26
const
char
* xmlin,
27
char
** xmlOut
28
);
29
30
#ifdef __cplusplus
31
extern
"C"
{
32
#endif
33
37
typedef
struct
AIWS_ext_entry_s
38
{
39
const
char
*
method_name
;
40
AIWS_Invoke_CBFunc
ext_method
;
41
}
AIWS_ext_entry_t
;
42
43
#ifdef __cplusplus
44
}
45
#endif
46
47
#include <ai/libai_exports.h>
48
49
#ifdef __cplusplus
50
extern
"C"
{
51
#endif
52
53
extern
AI_API
int
AIWS_addextensions
(
54
AIWS_ext_entry_t
* extensions
55
);
56
57
#ifdef __cplusplus
58
}
59
#endif
60
63
#include <ai/libai_undef.h>
64
65
#endif