Changeset 6181 for trunk/licq/include/licq_user.h
- Timestamp:
- 05/05/08 16:31:53 (7 months ago)
- Files:
-
- 1 modified
-
trunk/licq/include/licq_user.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/licq/include/licq_user.h
r6165 r6181 516 516 // Picture Info 517 517 bool GetPicturePresent() { return m_bPicturePresent; } 518 unsigned short BuddyIconType() { return m_nBuddyIconType; } 519 char BuddyIconHashType() { return m_nBuddyIconHashType; } 520 char *BuddyIconHash() { return m_szBuddyIconHash; } 521 char *OurBuddyIconHash() { return m_szOurBuddyIconHash; } 518 522 519 523 // Dynamic info fields for protocol plugins … … 635 639 // Picture info 636 640 void SetPicturePresent(bool b) { m_bPicturePresent = b; SavePictureInfo(); } 641 void SetBuddyIconType(unsigned short s) { m_nBuddyIconType = s; } 642 void SetBuddyIconHashType(char s) { m_nBuddyIconHashType = s; } 643 void SetBuddyIconHash(char *s) { SetString(&m_szBuddyIconHash, s); } 644 void SetOurBuddyIconHash(char *s) { SetString(&m_szOurBuddyIconHash, s); } 637 645 638 646 // Licq Info … … 946 954 // Picture Info 947 955 bool m_bPicturePresent; 956 unsigned short m_nBuddyIconType; 957 char m_nBuddyIconHashType; 958 char *m_szBuddyIconHash, *m_szOurBuddyIconHash; 948 959 949 960 // Dynamic info fields for protocol plugins
