]> git.imager.perl.org - imager.git/blob - dynfilt/pluginst.h
added "kwalitee" test script:
[imager.git] / dynfilt / pluginst.h
1 #include "../plug.h"
2
3 #ifdef WIN32
4 #define WIN32_EXPORT __declspec(dllexport)
5 #else
6 /* this may need to change for other Win32 compilers */
7 #define WIN32_EXPORT
8 #endif
9
10 symbol_table_t *symbol_table;
11 UTIL_table_t *util_table;
12
13 void WIN32_EXPORT
14 install_tables(symbol_table_t *s,UTIL_table_t *u) {
15   symbol_table=s;
16   util_table=u;
17 }