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_events.h

    r6180 r6181  
    248248 
    249249  // Daemon only 
    250   unsigned short SubType() const { return m_nSubType; } 
    251   unsigned short ExtraInfo() const { return m_nExtraInfo; } 
     250  unsigned short SubType() const     { return m_nSubType; } 
     251  unsigned short ExtraInfo() const   { return m_nExtraInfo; } 
     252  void SetSubType(unsigned short nSubType) { m_nSubType = nSubType; } 
     253  bool NoAck() const           { return m_NoAck; } 
     254  void SetNoAck(bool NoAck)    { m_NoAck = NoAck; } 
     255  bool IsCancelled() const     { return m_bCancelled; } 
     256 
     257  void AttachPacket(CPacket *p); 
    252258 
    253259  // Compare this event to another one 
     
    291297 
    292298friend class CICQDaemon; 
     299friend class COscarService; 
    293300friend class CMSN; 
    294301friend void *ProcessRunningEvent_Client_tep(void *p); 
    295302friend void *ProcessRunningEvent_Server_tep(void *p); 
     303friend void *OscarServiceSendQueue_tep(void *p); 
    296304friend void *MonitorSockets_tep(void *p); 
    297305}; 
     
    477485  //! The user has requested to update the owner's profile/information. 
    478486  PROTOxUPDATExINFO, 
     487  //! The user has requested the user's picture/icon/avatar/etc.. 
     488  PROTOxREQUESTxPICTURE, 
    479489  //! The user has requested this user be added to the Invisible/Block list. 
    480490  PROTOxBLOCKxUSER, 
     
    685695}; 
    686696 
     697class CRequestPicture : public CSignal 
     698{ 
     699public: 
     700  CRequestPicture(const char *); 
     701  virtual ~CRequestPicture(); 
     702}; 
     703 
    687704class CBlockUserSignal : public CSignal 
    688705{