typedef struct _NWS_DATA { void *dt; int type; } NWS_DATA;
*dt | データへのポインタ |
type | データタイプ |
メンバ type は下記の意味を持ちます。
データタイプ | 意味 |
NWD_DT_CHAR | char(Sint8)型 |
NWD_DT_SHORT | short(Sint16)型 |
NWD_DT_LONG | long(Sint32)型 |
NWD_DT_FLOAT | float(Float)型 |
NWD_DT_UCHAR | unsigned char(Uint8)型 |
NWD_DT_USHORT | unsigned short(Uint16)型 |
NWD_DT_ULONG | unsigned long(Uint32)型 |