Use standard unsigned integer types
This commit is contained in:
@@ -72,14 +72,14 @@ struct transform_substructure_t {
|
||||
*
|
||||
* @return Transform type of current transform substructure.
|
||||
*/
|
||||
u_int8_t (*get_transform_type_or_number) (transform_substructure_t *this);
|
||||
uint8_t (*get_transform_type_or_number) (transform_substructure_t *this);
|
||||
|
||||
/**
|
||||
* Get transform id of the current transform.
|
||||
*
|
||||
* @return Transform id of current transform substructure.
|
||||
*/
|
||||
u_int16_t (*get_transform_id) (transform_substructure_t *this);
|
||||
uint16_t (*get_transform_id) (transform_substructure_t *this);
|
||||
|
||||
/**
|
||||
* Create an enumerator over transform attributes.
|
||||
@@ -111,6 +111,6 @@ transform_substructure_t *transform_substructure_create(payload_type_t type);
|
||||
* @return transform_substructure_t object
|
||||
*/
|
||||
transform_substructure_t *transform_substructure_create_type(payload_type_t type,
|
||||
u_int8_t type_or_number, u_int16_t id);
|
||||
uint8_t type_or_number, uint16_t id);
|
||||
|
||||
#endif /** TRANSFORM_SUBSTRUCTURE_H_ @}*/
|
||||
|
||||
Reference in New Issue
Block a user