diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2016-11-23 16:19:57 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2016-11-23 19:27:09 +0100 |
commit | 905c8a48e96350af002536b627b46fbf517f727c (patch) | |
tree | dc73581b5393b4f5ea0101e420581206b86e0e4e /libqcdm/src/result-private.h | |
parent | 944e34ecdb9028b68b2144dd2c6d698d508f1808 (diff) |
libqcdm,libwmc: use C99 sized types from stdint.h
Diffstat (limited to 'libqcdm/src/result-private.h')
-rw-r--r-- | libqcdm/src/result-private.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/libqcdm/src/result-private.h b/libqcdm/src/result-private.h index 382411c1..fae39034 100644 --- a/libqcdm/src/result-private.h +++ b/libqcdm/src/result-private.h @@ -28,26 +28,25 @@ void qcdm_result_add_string (QcdmResult *result, void qcdm_result_add_u8 (QcdmResult *result, const char *key, - u_int8_t num); + uint8_t num); void qcdm_result_add_u8_array (QcdmResult *result, const char *key, - const u_int8_t *array, + const uint8_t *array, size_t array_len); int qcdm_result_get_u8_array (QcdmResult *result, const char *key, - const u_int8_t **out_val, + const uint8_t **out_val, size_t *out_len); void qcdm_result_add_u16_array (QcdmResult *result, const char *key, - const u_int16_t *array, + const uint16_t *array, size_t array_len); void qcdm_result_add_u32 (QcdmResult *result, const char *key, - u_int32_t num); + uint32_t num); #endif /* LIBQCDM_RESULT_PRIVATE_H */ - |