summaryrefslogtreecommitdiff
path: root/protocols/IRCG/src/ircproto.h
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/IRCG/src/ircproto.h')
-rw-r--r--protocols/IRCG/src/ircproto.h60
1 files changed, 30 insertions, 30 deletions
diff --git a/protocols/IRCG/src/ircproto.h b/protocols/IRCG/src/ircproto.h
index 1cd646d368..f0792daf08 100644
--- a/protocols/IRCG/src/ircproto.h
+++ b/protocols/IRCG/src/ircproto.h
@@ -123,36 +123,36 @@ struct CIrcProto : public PROTO<CIrcProto>
int m_quickComboSelection;
int m_onlineNotificationTime;
int m_onlineNotificationLimit;
- BYTE m_IPFromServer;
- BYTE m_showAddresses;
- BYTE m_disconnectDCCChats;
- BYTE m_disableErrorPopups;
- BYTE m_rejoinChannels;
- BYTE m_rejoinIfKicked;
- BYTE m_hideServerWindow;
- BYTE m_ident;
- BYTE m_identTimer;
- BYTE m_autoOnlineNotification;
- BYTE m_sendKeepAlive;
- BYTE m_joinOnInvite;
- BYTE m_perform;
- BYTE m_forceVisible;
- BYTE m_ignore;
- BYTE m_ignoreChannelDefault;
- BYTE m_useServer;
- BYTE m_DCCFileEnabled;
- BYTE m_DCCChatEnabled;
- BYTE m_DCCChatAccept;
- BYTE m_DCCChatIgnore;
- BYTE m_DCCPassive;
- BYTE m_DCCMode;
+ uint8_t m_IPFromServer;
+ uint8_t m_showAddresses;
+ uint8_t m_disconnectDCCChats;
+ uint8_t m_disableErrorPopups;
+ uint8_t m_rejoinChannels;
+ uint8_t m_rejoinIfKicked;
+ uint8_t m_hideServerWindow;
+ uint8_t m_ident;
+ uint8_t m_identTimer;
+ uint8_t m_autoOnlineNotification;
+ uint8_t m_sendKeepAlive;
+ uint8_t m_joinOnInvite;
+ uint8_t m_perform;
+ uint8_t m_forceVisible;
+ uint8_t m_ignore;
+ uint8_t m_ignoreChannelDefault;
+ uint8_t m_useServer;
+ uint8_t m_DCCFileEnabled;
+ uint8_t m_DCCChatEnabled;
+ uint8_t m_DCCChatAccept;
+ uint8_t m_DCCChatIgnore;
+ uint8_t m_DCCPassive;
+ uint8_t m_DCCMode;
WORD m_DCCPacketSize;
- BYTE m_manualHost;
- BYTE m_oldStyleModes;
- BYTE m_channelAwayNotification;
- BYTE m_sendNotice;
- BYTE m_utfAutodetect;
- BYTE m_bUseSASL;
+ uint8_t m_manualHost;
+ uint8_t m_oldStyleModes;
+ uint8_t m_channelAwayNotification;
+ uint8_t m_sendNotice;
+ uint8_t m_utfAutodetect;
+ uint8_t m_bUseSASL;
int m_codepage;
COLORREF colors[16];
HICON hIcon[13];
@@ -193,7 +193,7 @@ struct CIrcProto : public PROTO<CIrcProto>
// clist.cpp
MCONTACT CList_AddContact(CONTACT *user, bool InList, bool SetOnline);
- bool CList_SetAllOffline(BYTE ChatsToo);
+ bool CList_SetAllOffline(uint8_t ChatsToo);
MCONTACT CList_SetOffline(CONTACT *user);
MCONTACT CList_FindContact(CONTACT *user);
BOOL CList_AddDCCChat(const CMStringW &name, const CMStringW &hostmask, unsigned long adr, int port);