diff options
Diffstat (limited to 'icclient/product.h')
-rw-r--r-- | icclient/product.h | 32 |
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 |