From 7f934ce683df5252fa6350dcc15e187b1c7623cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=A6=8C=EA=A6=AB=EA=A6=B6=EA=A6=8F=EA=A7=80=EA=A6=A6?= =?UTF-8?q?=EA=A6=BF=EA=A6=A7=EA=A6=AE=EA=A6=91=EA=A6=A9=EA=A6=AD=EA=A7=80?= Date: Sun, 25 Sep 2022 10:20:12 +0800 Subject: Rename remaining icclient to interchange --- icclient/member.h | 79 ------------------------------------------------------- 1 file changed, 79 deletions(-) delete mode 100644 icclient/member.h (limited to 'icclient/member.h') diff --git a/icclient/member.h b/icclient/member.h deleted file mode 100644 index 6b9d2ee..0000000 --- a/icclient/member.h +++ /dev/null @@ -1,79 +0,0 @@ -#ifndef ICCLIENT_MEMBER_H -#define ICCLIENT_MEMBER_H - -#include -#include "typedefs.h" - -struct icclient_member_preferences { - bool mv_same_billing; - bool email_copy; -}; - -struct icclient_member { - char *username; - char *usernick; - char *password; - char *expiration; - char *acl; - char *mod_time; - char *s_nickname; - char *company; - char *fname; /*!< Shipping first name */ - char *lname; /*!< Shipping last name */ - char *address1; - char *address2; - char *address3; - char *city; - char *state; - char *zip; - char *country; - char *phone_day; - char *mv_shipmode; - char *b_nickname; - char *b_fname; /*!< Billing first name */ - char *b_lname; /*!< Billing last name */ - char *b_company; - char *b_address1; - char *b_address2; - char *b_address3; - char *b_city; - char *b_state; - char *b_zip; - char *b_country; - char *b_phone; - char *p_nickname; - char *email; - char *fax; - char *phone_night; - char *address_book; - char *accounts; - struct icclient_member_preferences *preferences; - char *carts; - char *owner; - char *file_acl; - char *db_acl; - char *mail_list; - char *credit_limit; - bool inactive; - bool dealer; - char *price_level; -}; - -#ifdef __cplusplus -extern "C" { -#endif - - void icclient_member_newaccount(const char *username, const char *password, const char *verify, - void (*handler)(icclient_response *), void (*callback)(struct icclient_member *)); - void icclient_member_login(const char *username, const char *password, void (*handler)(icclient_response *), - void (*callback)(struct icclient_member *)); - void icclient_member_account(const char *fname, const char *lname, const char *address1, const char *address2, - const char *city, const char *state, const char *zip, const char *email, const char *phone_day); - void icclient_member_changepassword(const char *password_old, const char *password, const char *verify); - void icclient_member_logout(struct icclient_member *member); - -#ifdef __cplusplus -} -#endif - -#endif -- cgit v1.2.3