Introduced payload types sa_payload and proposal_substructure

This commit is contained in:
Jan Hutter
2005-11-14 10:14:22 +00:00
parent 1b89ef112e
commit da42afc5ec
9 changed files with 608 additions and 6 deletions
+22 -1
View File
@@ -181,6 +181,15 @@ enum encoding_type_e{
* The current read pointer is moved 32 bit forward afterwards.
*/
SPI_SIZE,
/**
* Representating a spi field
*
* When generating the content of the chunkt pointing to
* is written.
*
* When parsing SPI_SIZE bytes are read and written into the chunk pointing to.
*/
SPI,
/**
* Representating one or more proposal substructures
*
@@ -192,7 +201,19 @@ enum encoding_type_e{
* When parsing the parsed proposal_substructure_t objects have
* to be stored in the pointed linked_list.
*/
PROPOSALS
PROPOSALS,
/**
* Representating one or more transform substructures
*
* The offset points to a linked_list_t pointer.
*
* When generating the transform_substructure_t objects are stored
* in the pointed linked_list.
*
* When parsing the parsed transform_substructure_t objects have
* to be stored in the pointed linked_list.
*/
TRANSFORMS
};
/**