From 163fbd85e745263f0346bfa73dc682d21cbc665a Mon Sep 17 00:00:00 2001 From: Cory McWilliams Date: Mon, 10 Jun 2024 20:23:11 -0400 Subject: [PATCH] Fix docs. --- src/ssb.db.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ssb.db.h b/src/ssb.db.h index d80a5445..d86a55a7 100644 --- a/src/ssb.db.h +++ b/src/ssb.db.h @@ -57,7 +57,9 @@ bool tf_ssb_db_blob_get(tf_ssb_t* ssb, const char* id, uint8_t** out_blob, size_ /** ** A function called when a blob is retrieved from the database. -** @param id The blob identifier. +** @param found Whether the blob was found. +** @param data The blob data if found. +** @param size The size of the blob data if found, in bytes. ** @param user_data The user data. */ typedef void(tf_ssb_db_blob_get_callback_t)(bool found, const uint8_t* data, size_t size, void* user_data);