diff options
Diffstat (limited to 'protocols/IRCG/src/irclib.h')
-rw-r--r-- | protocols/IRCG/src/irclib.h | 6 |
1 files changed, 6 insertions, 0 deletions
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;
|