I am using LabVIEW to access a .dll where one of the parameters is a structure containing integers with bit fields set. How can set up the data types in a cluster for bit fields?
An example of the structure definition:
typedef structure{
UINT8 a:4;
UINT8 b:1;
UINT8 c:3;
} EX_STRUCT;
Where a,b,&c are located in one byte.