Move the sources to trunk
[opencv] / apps / Hawk / CVEiCL / wrappers / eicdllwrap.h
1 /*M///////////////////////////////////////////////////////////////////////////////////////
2 //
3 //  IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
4 //
5 //  By downloading, copying, installing or using the software you agree to this license.
6 //  If you do not agree to this license, do not download, install,
7 //  copy or use the software.
8 //
9 //
10 //                        Intel License Agreement
11 //                For Open Source Computer Vision Library
12 //
13 // Copyright (C) 2000, Intel Corporation, all rights reserved.
14 // Third party copyrights are property of their respective owners.
15 //
16 // Redistribution and use in source and binary forms, with or without modification,
17 // are permitted provided that the following conditions are met:
18 //
19 //   * Redistribution's of source code must retain the above copyright notice,
20 //     this list of conditions and the following disclaimer.
21 //
22 //   * Redistribution's in binary form must reproduce the above copyright notice,
23 //     this list of conditions and the following disclaimer in the documentation
24 //     and/or other materials provided with the distribution.
25 //
26 //   * The name of Intel Corporation may not be used to endorse or promote products
27 //     derived from this software without specific prior written permission.
28 //
29 // This software is provided by the copyright holders and contributors "as is" and
30 // any express or implied warranties, including, but not limited to, the implied
31 // warranties of merchantability and fitness for a particular purpose are disclaimed.
32 // In no event shall the Intel Corporation or contributors be liable for any direct,
33 // indirect, incidental, special, exemplary, or consequential damages
34 // (including, but not limited to, procurement of substitute goods or services;
35 // loss of use, data, or profits; or business interruption) however caused
36 // and on any theory of liability, whether in contract, strict liability,
37 // or tort (including negligence or otherwise) arising in any way out of
38 // the use of this software, even if advised of the possibility of such damage.
39 //
40 //M*/#ifndef __EIC_DLL_WRAP_H__
41 #define __EIC_DLL_WRAP_H__
42
43 #ifdef __cplusplus
44 extern "C" {
45 #endif
46
47 #ifdef DLL_EXPORTS
48 #define DLL_API __declspec(dllexport)
49 #else
50 #define DLL_API static
51 #endif
52
53 #include <stdlib.h>
54 #include <setjmp.h>
55 #include "eic.h"
56 #include "hawkwrap.h"
57
58 #ifdef DLL_EXPORTS
59 static errlevel_t errlevel = unsafe;
60 static jmp_buf* errmark = NULL;
61
62 static AR_t** eicAR;
63 static void (*eicCallBack)(void*);
64
65 #ifdef getargs
66 #undef getargs
67 #define getargs() eicAR[2]
68 #endif
69 #endif /* DLL_EXPORTS */
70
71 typedef enum
72 {
73     PLUG_WRAPPERS,
74     PLUG_ALL
75 } plugin_type;
76
77 typedef struct _plugin_info
78 {
79     int reserved; /* Reserved for internal use */
80     char name[1024]; /* name of plugin */
81     char library_path[_MAX_PATH];
82     plugin_type type; /* type of plugin */
83 } plugin_info;
84
85 DLL_API void PluginGetInfo(plugin_info* info);
86
87 #ifdef DLL_EXPORTS
88 DLL_API void SetErrLevel(errlevel_t level)
89 {
90     errlevel = level;
91 }
92
93 DLL_API void SetErrMark(jmp_buf* mark)
94 {
95     errmark = mark;
96 }
97
98
99 DLL_API void SetEiCStack(AR_t** ar)
100 {
101     eicAR = ar;
102 }
103
104 DLL_API void SetEiCCallback(void(*call)(void*))
105 {
106     eicCallBack = call;
107 }
108
109 static void EiC_callBack(void* code)
110 {
111     eicCallBack(code);
112 }
113 #else
114 DLL_API void SetErrLevel(errlevel_t level);
115 DLL_API void SetErrMark(jmp_buf* mark);
116 DLL_API void SetEiCStack(AR_t** ar);
117 DLL_API void SetEiCCallback(void(*call)(void*));
118 #endif /* DLL_EXPORTS */
119
120 DLL_API void GetFunctions(char*** func_names, val_t (***funcs)(void), int* funcs_count);
121
122 #ifdef __cplusplus
123 }
124 #endif //__cplusplus
125
126 #endif /* __EIC_DLL_WRAP_H__ */