summaryrefslogtreecommitdiff
path: root/icclient/product.h
diff options
context:
space:
mode:
authorꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2021-06-13 08:40:26 +0800
committerꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id>2021-06-13 08:40:26 +0800
commitdaf858c02db1a5a12151d142ce55dfe9fbb2b715 (patch)
treed6343c4f8b7ef9bad9e3a17264b201f6b8012791 /icclient/product.h
parent0a6e2943843ca894abc562ba98bcbf3399769481 (diff)
Merge catalog and product to client
Diffstat (limited to 'icclient/product.h')
-rw-r--r--icclient/product.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/icclient/product.h b/icclient/product.h
deleted file mode 100644
index 8fa6bc3..0000000
--- a/icclient/product.h
+++ /dev/null
@@ -1,32 +0,0 @@
-#ifndef ICCLIENT_PRODUCT_H
-#define ICCLIENT_PRODUCT_H
-
-struct icclient_product_crosssell {
- size_t length;
- char *skus[];
-};
-
-struct icclient_product {
- char *sku;
- char *description;
- char *comment;
- char *thumb;
- char *image;
- double price;
- char *prod_group;
- double weight;
- char *author;
- struct icclient_product_crosssell *crosssell;
-};
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
- void icclient_product_free(struct icclient_product *product);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif