06-05-2014 08:33 AM
sorry for my english,
i have the below question about the configuration of Call Library Functions:
int xFunc(int a, int *b)
it's ok
but this?
int xFunc(int a, int &b)
thanks in advance,
Roberto
06-05-2014 10:41 AM
Should be the same when config the dll.
Both want a int pointer for input.
Don't know if LabVIEW like the second one or not.
Different when use the input:
in the first case, b is a pointer; *b is the integer.
in the second case, b in the integer, &b is address of b, ie. a pointer.