Hi,
I have some problems to create a function tree from a header file automaticly. I use the option "Options->Generate Function Tree..." in a header file.
I'm building a dll as well in cvi as in visual studio and therefor I need also and __declspec(dllexport) qualifier in visual.
For the compatibility with cvi I wrote a makro definition like this:
#ifdef _CVI_
#define MY_API
#else
#ifdef MY_EXPORTS
#define MY_API __declspec(dllexport)
#else
#define MY_API __declspec(dllimport)
#endif
#endif
and my function look like this:
MY_API int STDCALL myfunction(void);
The problem is that I don't know how to create a function tree automaticly from such a header file. Because every time I tried to create one the creation broke down with an error that there is an unknown data type.
My question is now is there any possibility to fix this and create a function tree or not?
Thanks,
J-acky