I need to configure the Call Library Function Node for a function in dll with a structure argument. The structure has an array as one of its elements.
The prototype of the function is
long _stdcall CanRcvMsg(long handle, CAN_PACKET *packet);
where CAN_PACKET is
typedef struct _tagCAN_PACKET
{
DWORD CAN_ID; // CAN id
BYTE rtr; // RTR bit
BYTE len; // Data length
BYTE data[8]; // Data
DWORD time; // Occur time (non use)
BYTE reserved; // future use
}CAN_PACKET;
How can the CLF node be configured. Can the cluster with these elements be passed directly to the CLF node?