mirror of https://bitbucket.org/ausocean/av.git
Updating some C code to make more usable
This commit is contained in:
parent
1a8aeace34
commit
c967824d3b
|
@ -70,16 +70,17 @@ extern "C"
|
|||
struct AMFObjectProperty *o_props;
|
||||
} AMFObject;
|
||||
|
||||
typedef struct P_vu {
|
||||
double p_number;
|
||||
AVal p_aval;
|
||||
AMFObject p_object;
|
||||
} P_vu;
|
||||
|
||||
typedef struct AMFObjectProperty
|
||||
{
|
||||
AVal p_name;
|
||||
AMFDataType p_type;
|
||||
union
|
||||
{
|
||||
double p_number;
|
||||
AVal p_aval;
|
||||
AMFObject p_object;
|
||||
} p_vu;
|
||||
P_vu p_vu;
|
||||
int16_t p_UTCoffset;
|
||||
} AMFObjectProperty;
|
||||
|
||||
|
|
Loading…
Reference in New Issue