Define functions to generate and write the RR/SUSP fields.

This commit is contained in:
Vreixo Formoso
2007-12-24 16:29:57 +01:00
parent 778e39ba3c
commit c3af3553df
3 changed files with 154 additions and 21 deletions

View File

@@ -199,6 +199,22 @@ size_t rrip_calc_len(Ecma119Image *t, Ecma119Node *n, int type,
return su_size;
}
int rrip_get_susp_fields(Ecma119Image *t, Ecma119Node *n, int type,
size_t space, struct susp_info *info)
{
//TODO to implement
return -1;
}
void rrip_write_susp_fields(Ecma119Image *t, struct susp_info *info,
void *buf)
{
//TODO to implement
}
int rrip_write_ce_fields(Ecma119Image *t, struct susp_info *info)
{
//TODO to implement
return -1;
}