diff options
author | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2020-06-19 15:10:55 +0800 |
---|---|---|
committer | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2020-06-19 15:10:55 +0800 |
commit | 844c85dcb6115d2bc14caae60c162a063ee402e5 (patch) | |
tree | 7b4e68095316f77cab5c379db17c832138a03ff4 /icclient | |
parent | b4590ddec4936fd542691ac0d35628afdb9331e1 (diff) |
Results page implementation
Diffstat (limited to 'icclient')
-rw-r--r-- | icclient/client.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/icclient/client.h b/icclient/client.h index f35b9a2..684e17a 100644 --- a/icclient/client.h +++ b/icclient/client.h @@ -19,6 +19,17 @@ extern "C" { bool icclient_init(const char *url, const char *certificate); /*! + * \brief For fetching data about products that belong a specific group. + * \param handler A pointer to a cURL write function callback. + * \param catalogptr A pointer to pointer to the catalog to store the data. + * \param prodgroup The name of the product group. + */ + void icclient_results(size_t (*handler)(void *contents, size_t size, + size_t nmemb, void *userdata), + struct icclient_catalog **catalogptr, + const char *prodgroup); + + /*! * \brief For fetching data about all active products. * \param handler A pointer to a cURL write function callback. * \param catalogptr A pointer to pointer to the catalog to store the data. |