add type void_array_t
parent
45da326ce2
commit
e1ef38d6a4
|
|
@ -245,16 +245,22 @@ typedef struct
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
int32_t *values;
|
int32_t *elts;
|
||||||
int count;
|
int count;
|
||||||
} int32_array_t;
|
} int32_array_t;
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
int64_t *values;
|
int64_t *elts;
|
||||||
int count;
|
int count;
|
||||||
} int64_array_t;
|
} int64_array_t;
|
||||||
|
|
||||||
|
typedef struct
|
||||||
|
{
|
||||||
|
void *elts;
|
||||||
|
int count;
|
||||||
|
} void_array_t;
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
pthread_mutex_t lock;
|
pthread_mutex_t lock;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue