pointcloud/pgsql/pc_pgsql.h
Paul Ramsey cec591ce2e Start on WKB support and necessary
infrastructure to do PCPOINT in the database
2013-01-18 12:02:54 -08:00

20 lines
199 B
C

typedef struct
{
uint32_t size;
uint32_t pcid;
uint8_t data[1];
}
SERIALIZED_POINT;
typedef struct
{
uint32_t size;
uint32_t pcid;
uint32_t npoints;
uint8_t data[1];
}
SERIALIZED_PATCH;