03-05-2007 04:01 AM
03-06-2007 05:51 AM
Hi Davide,
I've found these few lines about your problem and I think that for now there is now integration:
CVI does not support __inline and __asm modifers and keywords, since CVI is not an optimizing compiler and cannot compile assembly code, respectively. Unfortunately, there are no workarounds to that, since CVI is not designed to handle these operations.
If it doesn't change the behavior of the third party API, you can ignore __inline modifiers using "#define __inline" and ignore __asm keywords and the assembly code using #define and some regular expression tricks. However, ignoring the assembly code will most definetely change the behavior of the code.
Best regards,
Marco
03-06-2007 09:36 AM