I would like to know how to convert C struct to Delphi record?
The following code is in C. I want to convert to Delphi.
typedef struct
{
Uint16 value1[32];
Uint16 value2[22];
Uint16 value3[8];
}MY_STRUCT_1;
Thanks in advance.
The Uint16 is equivalent to the Word type and the
[]indicates an array.