The syntax for using DMI_STRING is:
typedef struct {
unsigned long length;
char body[1];
} DMI_STRING;
length
body
The data for the string. The string is not null-terminated.
The 1 in the definition is strictly for ANSI C compliance. The actual size
will be the size of the string.
[Back]
[Next]