Thank you very much for time and response. So I can not have same parameter doing both jobs of input and output.
For example,
if I want to pass pointer to int and pointer to string in c my function would be"
int __stdcall my_function(int *number, char *string)
{
number = number + 100,
strcat(string, "hello");
return 0;
}
if input for above functions are 100 and "hi" outout would be 200 and "hihello".
Now if I want to do same thing in labiew my function would be
int __stdcall my_function(int *number, int number_out, char *string, char string_out[])
{
number_out = number + 100,
sprintf(string_out, "%shello), string);
return 0;
}
anaother word input parameters for labview would be double for every pointer use.
is this right?
Thanks.
Sheetal
Thanks.
CVI 2010
LabVIEW 2011 SP1
Vision Builder AI 2011 SP1