07-22-2002 02:37 PM
07-23-2002 11:36 AM
07-23-2002 12:30 PM
07-23-2002 02:15 PM
07-24-2002 10:23 AM
07-24-2002 11:42 AM
07-24-2002 12:14 PM
07-25-2002 10:34 AM
02-09-2011 05:00 AM
Hi, I created a dll by labwindows/cvi for teststand call.. the dll is runs scanworks and loads and runs projects. but there is problem when i call the dll in teststand.. but if write the code for executable there is no problem to access scanworks.. because there is a use of InitCVIRTE.. but i cant find any usage of this function for teststand dll..
executable ---- WORKS!!
int main (int argc, char *argv[])
{
if (InitCVIRTE (0, argv, 0) == 0) /* Needed if linking in external compiler; harmless otherwise */
return -1; /* out of memory */
}
but my dll has to contain the start of..
void __declspec(dllexport) BS_Test( .... ... ... ...)
how can i use InitCVIRTE?? i have to access scanworks..