I am trying to compile some code that I downloaded in visual studio. The code was intended for msvc 6, and I imported it into VS2010. The code is intended to support ASIO for labview by compiling a DLL. see here for all the code.
When creating an error, the following error occurs: "error C2373: '_ pctype': override, modifiers of a different type.
The following is a snippet of code:
unsigned short _Ints[ 512 ];
unsigned short *_pctype = _Ints;
If someone will refer to the code package from the link I provided, this is from the GenMonCIN.c file
source share