Changeset cf02dd6 for libfaim/popups.c
- Timestamp:
- Dec 10, 2003, 3:20:45 PM (19 years ago)
- Branches:
- master, barnowl_perlaim, debian, owl, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- b1fe407
- Parents:
- 8c46404
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libfaim/popups.c
r862371b rcf02dd6 23 23 fu16_t width, height, delay; 24 24 25 tl = aim_ readtlvchain(bs);25 tl = aim_tlvlist_read(bs); 26 26 27 msg = aim_ gettlv_str(tl, 0x0001, 1);28 url = aim_ gettlv_str(tl, 0x0002, 1);29 width = aim_ gettlv16(tl, 0x0003, 1);30 height = aim_ gettlv16(tl, 0x0004, 1);31 delay = aim_ gettlv16(tl, 0x0005, 1);27 msg = aim_tlv_getstr(tl, 0x0001, 1); 28 url = aim_tlv_getstr(tl, 0x0002, 1); 29 width = aim_tlv_get16(tl, 0x0003, 1); 30 height = aim_tlv_get16(tl, 0x0004, 1); 31 delay = aim_tlv_get16(tl, 0x0005, 1); 32 32 33 33 if ((userfunc = aim_callhandler(sess, rx->conn, snac->family, snac->subtype))) 34 34 ret = userfunc(sess, rx, msg, url, width, height, delay); 35 35 36 aim_ freetlvchain(&tl);36 aim_tlvlist_free(&tl); 37 37 free(msg); 38 38 free(url);
Note: See TracChangeset
for help on using the changeset viewer.