data.h 284 字节
Newer Older
H
more  
Hongze Cheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#if !defined(_TD_DATA_H_)
#define _TD_DATA_H_

#include <stdint.h>

// ---- Row data interface
typedef struct {
    int32_t numOfRows;
    char * data;
} SRData;

// ---- Column data interface
typedef struct {
    int32_t numOfPoints;
    char *data;
} SCData;

#endif // _TD_DATA_H_