Changeset 6181 for trunk/licq/include/licq_events.h
- Timestamp:
- 05/05/08 16:31:53 (7 months ago)
- Files:
-
- 1 modified
-
trunk/licq/include/licq_events.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/licq/include/licq_events.h
r6180 r6181 248 248 249 249 // 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); 252 258 253 259 // Compare this event to another one … … 291 297 292 298 friend class CICQDaemon; 299 friend class COscarService; 293 300 friend class CMSN; 294 301 friend void *ProcessRunningEvent_Client_tep(void *p); 295 302 friend void *ProcessRunningEvent_Server_tep(void *p); 303 friend void *OscarServiceSendQueue_tep(void *p); 296 304 friend void *MonitorSockets_tep(void *p); 297 305 }; … … 477 485 //! The user has requested to update the owner's profile/information. 478 486 PROTOxUPDATExINFO, 487 //! The user has requested the user's picture/icon/avatar/etc.. 488 PROTOxREQUESTxPICTURE, 479 489 //! The user has requested this user be added to the Invisible/Block list. 480 490 PROTOxBLOCKxUSER, … … 685 695 }; 686 696 697 class CRequestPicture : public CSignal 698 { 699 public: 700 CRequestPicture(const char *); 701 virtual ~CRequestPicture(); 702 }; 703 687 704 class CBlockUserSignal : public CSignal 688 705 {
