diff options
Diffstat (limited to 'icclient')
-rw-r--r-- | icclient/ord.h | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/icclient/ord.h b/icclient/ord.h index 4491ba4..0cd0e75 100644 --- a/icclient/ord.h +++ b/icclient/ord.h @@ -1,25 +1,22 @@ #ifndef ICCLIENT_ORD_H #define ICCLIENT_ORD_H -#include "product.h" - -struct icclient_item { +struct icclient_ord_item { struct icclient_product *product; unsigned int quantity; }; -struct icclient_order { - double subtotal, shipping, totalcost; +struct icclient_ord_order { + double subtotal, shipping, total_cost; size_t nitems; - struct icclient_item *items[]; + struct icclient_ord_item *items[]; }; #ifdef __cplusplus extern "C" { #endif - void icclient_remove(const unsigned int *indices); - void icclient_checkout(struct ic_order *order); + void icclient_ord_free(struct icclient_ord_order *order); #ifdef __cplusplus } |