www.pudn.com > matlab7.x.rar > elementtag.h
#ifndef ELEMENTTAG_H
#define ELEMENTTAG_H
// tag of the data element
typedef struct tagDataElementTag
{
int dataType;
int numBytes;
} ElementTag;
// small data format
typedef struct tagSmallDataTag
{
short numBytes;
short dataType;
char data[4];
} SmallData;
#endif