I am reposting this from the Feflow wish list question posted by mistake over there.
I would appreciate it if someone gives me a direction how to declare the IfmBool in the following function.
double IfmGetResultsTransportMassValueAtXYZ(
IfmDocument pDoc,
double x,
double y,
double z,
IfmBool *ine);
I have declared the values of x, y and z as normal cpp variables. I have declared the last one as: IfmBool *ine; however, the function tells me that it has to be initialized.
IfmGetResultsTransportMassValueAtXYZ(x, y, z, ine) says it needs initializing the ine variable. How to declare the IfmBool variable?