blob: a36a14c11cc9921b4576fadeba61ed8ea081d7cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef __LIBSCILAB_TOOLBOX_GW_HXX__
#define __LIBSCILAB_TOOLBOX_GW_HXX__
#ifdef _MSC_VER
#ifdef LIBSCILAB_TOOLBOX_GW_EXPORTS
#define LIBSCILAB_TOOLBOX_GW_IMPEXP __declspec(dllexport)
#else
#define LIBSCILAB_TOOLBOX_GW_IMPEXP __declspec(dllimport)
#endif
#else
#define LIBSCILAB_TOOLBOX_GW_IMPEXP
#endif
extern "C" LIBSCILAB_TOOLBOX_GW_IMPEXP int libscilab_toolbox(wchar_t* _pwstFuncName);
#endif /* __LIBSCILAB_TOOLBOX_GW_HXX__ */
|