02-01-2012 10:30 AM
Dear all,
I have a function of a .dll of this type:
function(int return, int par1, bool par2)
When I look for a fitting description in the Parameter configuration menu I do not find the corresponding description for the bool variable.
Someone of you can give me a hand?
thanks
02-01-2012 11:00 AM - edited 02-01-2012 11:03 AM
You need to know how "bool" is defined in the DLL source code. Typically this is an I32, but it could just as well be a U8. For example, the Windows API defines the BOOL datatype as an "int". But "BOOLEAN" is defined as an unsigned char. Note that "BOOL" and "bool" are not the same thing.