| extern "C" { | |
| /** Structure behind dc_lot_t */ | |
| struct _dc_lot | |
| { | |
| /** @privatesection */ | |
| uint32_t magic; /**< The magic is used to avoid passing structures of different types. */ | |
| int text1_meaning; /**< The meaning of this value is defined by the creator of the object. 0 if not applicable. */ | |
| char* text1; /**< The meaning of this string is defined by the creator of the object. The string is freed with dc_lot_unref(). NULL if not applicable. */ | |
| char* text2; /**< The meaning of this string is defined by the creator of the object. The string is freed with dc_lot_unref(). NULL if not applicable. */ | |
| time_t timestamp; /**< The meaning of this value is defined by the creator of the object. 0 if not applicable. */ | |
| int state; /**< The meaning of this value is defined by the creator of the object. 0 if not applicable. */ | |
| uint32_t id; /**< The meaning of this value is defined by the creator of the object. 0 if not applicable. */ | |
| char* fingerprint; /**< used for qr code scanning only */ | |
| char* invitenumber; /**< used for qr code scanning only */ | |
| char* auth; /**< used for qr code scanning only */ | |
| }; | |
| /* library-internal */ | |
| void dc_lot_fill (dc_lot_t*, const dc_msg_t*, const dc_chat_t*, const dc_contact_t*, dc_context_t*); | |
| } /* /extern "C" */ | |