Show
Ignore:
Timestamp:
05/05/08 16:31:53 (7 months ago)
Author:
emostar
Message:

Add the patch by Sergey Kononenko (Message-ID: <20080122012616.48112055@…>)
Included the following additions:

  • Add support for AIM (not all users yet)
  • Fix a few memory leaks
  • Rename SSBI to BART
  • Add constants for BART Types
  • Add support to qt4-gui
  • Use boost in a few cases
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/licq/include/licq_user.h

    r6165 r6181  
    516516  // Picture Info 
    517517  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; } 
    518522 
    519523  // Dynamic info fields for protocol plugins 
     
    635639  // Picture info 
    636640  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); } 
    637645 
    638646  // Licq Info 
     
    946954  // Picture Info 
    947955  bool m_bPicturePresent; 
     956  unsigned short m_nBuddyIconType; 
     957  char m_nBuddyIconHashType; 
     958  char *m_szBuddyIconHash, *m_szOurBuddyIconHash; 
    948959 
    949960  // Dynamic info fields for protocol plugins