add type SFKeyValueArray

storage_pool
YuQing 2021-03-03 20:57:00 +08:00
parent 0b3c1d189f
commit 221ae1727d
1 changed files with 6 additions and 0 deletions

View File

@ -182,4 +182,10 @@ typedef struct sf_connection_parameters {
struct idempotency_client_channel *channel;
} SFConnectionParameters;
typedef struct sf_key_value_array {
key_value_pair_t *elts;
int count;
int alloc;
} SFKeyValueArray;
#endif