LabVIEW CLN調(diào)用dll時,接口只能是c99的類型,不可以使用c++的string類型。LabVIEW有其定義的string類型: LStrHandle。————————————————————————————————————————————————————--------------------------------------------------------------------------------------------C++的code如下:#include"extcode.h"http:// "extcode.h"的路徑是在C:Program FilesNational InstrumentsLabVIEW 2009cintools 里面。如果想用到extcode里面的一些函數(shù),需要鏈接庫labview.libtypedefstruct{int32 len;LStrHandle elm[1];} **LStrArrHd1;extern"C"_declspec(dllexport)voidstrArrayTest(LStrArrHd1 strArray);voidstrArrayTest(LStrArrHd1 strArray){intarraySize = (*strArray)->len;LStrHandle h = (*strArray)->elm[0];intcurStrSize = LStrLen(*h);char*curStr = (char*)LStrBuf(*h);intlen = strlen(curStr);}dll的parameter屬性如下:
——————————————————————————————————————————————Labview具體的string、array類型如下:
例子如下: