diff options
author | George Hazan <ghazan@miranda.im> | 2017-11-15 13:31:14 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-11-15 13:31:14 +0300 |
commit | 7ba28b7ff398cc9a018237407eebbf5a91382018 (patch) | |
tree | 379c8b93261d0057e81f28e353c1e390743ca6c6 /protocols/IRCG/src/irclib.h | |
parent | f6f193f8d9ef286699be2c2282a9c448f7668842 (diff) |
IRC:
- octal sequences replaced with hex constants;
- code cleaning;
- version bump
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;
|