diff options
author | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-10-06 18:23:44 +0800 |
---|---|---|
committer | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-10-06 18:23:44 +0800 |
commit | fc555594c636e87ffe2384e6b5240cfa934c6cf4 (patch) | |
tree | 47d75d9b701e1182c5c882628e8349a01416d2a5 /icclient | |
parent | c2c89d376b0d80299ad0fe8228ecef4279557160 (diff) |
Order function
Diffstat (limited to 'icclient')
-rw-r--r-- | icclient/client.h | 3 | ||||
-rw-r--r-- | icclient/ord.h | 4 |
2 files changed, 6 insertions, 1 deletions
diff --git a/icclient/client.h b/icclient/client.h index e49af36..db38926 100644 --- a/icclient/client.h +++ b/icclient/client.h @@ -3,6 +3,7 @@ struct icclient_product; struct icclient_catalog; +struct icclient_ord_order; #ifdef __cplusplus extern "C" { @@ -12,6 +13,8 @@ extern "C" { void icclient_allproducts(size_t (*handler)(void *contents, size_t size , size_t nmemb, void *userdata) , struct icclient_catalog **catalogptr); + void icclient_order(struct icclient_ord_order **orderptr, const char *sku + , struct icclient_catalog *catalog); void icclient_newaccount(const char *username, const char *password , const char *verify, const char *successpage , const char *nextpage, const char *failpage); diff --git a/icclient/ord.h b/icclient/ord.h index 0cd0e75..5632ffe 100644 --- a/icclient/ord.h +++ b/icclient/ord.h @@ -7,7 +7,9 @@ struct icclient_ord_item { }; struct icclient_ord_order { - double subtotal, shipping, total_cost; + double subtotal; + double shipping; + double total_cost; size_t nitems; struct icclient_ord_item *items[]; }; |