From 7ba28b7ff398cc9a018237407eebbf5a91382018 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Wed, 15 Nov 2017 13:31:14 +0300 Subject: IRC: - octal sequences replaced with hex constants; - code cleaning; - version bump --- protocols/IRCG/src/irclib.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'protocols/IRCG/src/irclib.h') diff --git a/protocols/IRCG/src/irclib.h b/protocols/IRCG/src/irclib.h index e75d5205a9..a6df9a0d8d 100644 --- a/protocols/IRCG/src/irclib.h +++ b/protocols/IRCG/src/irclib.h @@ -33,6 +33,12 @@ char* ConvertIntegerToIP(unsigned long int_ip_addr); namespace irc { //////////////////////////////////////////////////////////////////// +const int BOLD = 0x02; +const int COLOR = 0x03; +const int RESET = 0x0F; +const int ITALICS = 0x1D; +const int UNDERLINE = 0x1F; + struct DCCINFO : public MZeroedObject { DWORD dwAdr; -- cgit v1.2.3