I am trying to generate a CIN for the following example C code (mult.c)
/*
* CIN source file
*/
#include "extcode.h"
CIN MgErr CINRun(float32 *A, float32 *B, float32 *AB);
CIN MgErr CINRun(float32 *A, float32 *B, float32 *AB) {
*AB = *A * *B;
return noErr;
}
My makefile is
name=mult
type=CIN
cintoolsdir=C:\Program Files\National Instruments\LabVIEW 6.1\cintools
!include <$(cintoolsdir)\ntlvsb.mak>
I'm following the istructions in the LabVIEW Code
Interface Reference Manual to compile a CIN using visual c++, but when I open the makefile
whith visual C++ don't showme the messages mentioned in the manual and I can't add the mult.c file.
I'm using Labview 6.1 and MVC 6.0
Can anyone help?