LabVIEW Idea Exchange

cancel
Showing results for 
Search instead for 
Did you mean: 
redfrank

Application builder dll default parameter list order and naming convention for output arrays.

Status: New

Currently when I build a dll in Labview, the parameter list defaults to generating len, len2, len3 for the length of each string or array output I have in my function. Not only this but these array length are all dumped at the end of the parameter list and it is difficult to see which parameter matches which length. Please can developers consider having each length parameter after the array that they represent the length off, and name them with the name of the array parameter with Len at the end?

e.g. Currently default behavious produces:

functionName(double temperatureArray[], double voltageArray[], char errorString[], int len, int len2,int len3);

Can this be changed to:

functionName(double temperatureArray[], int temperatureArrayLen, double voltageArray[], int voltageArrayLen, char errorString[], errorStringLen);