hid doLog and introduced a settes for that.

This commit is contained in:
norayr 2017-05-22 16:59:57 +04:00
parent 02f36bcf1a
commit f2d06dd9a5
2 changed files with 8 additions and 2 deletions

View file

@ -55,13 +55,18 @@ CONST
callbackPrivate*: cbPrivateMessage;
callbackPublic*: cbPublicMessage;
callbackPublicMention*: cbPublicMessageWithMention;
doLog* : BOOLEAN;
doLog : BOOLEAN;
END;
VAR
eol* : ARRAY 3 OF CHAR;
PROCEDURE setLogging*(VAR inst: instance; state: BOOLEAN);
BEGIN
inst.doLog := state;
END setLogging;
PROCEDURE formUserNickLine(VAR user, owner, nick, res: ARRAY OF CHAR);
VAR
l : INTEGER;