From 222edf85cd8ee9c95ca81f9ed3cc40aa51b0daf4 Mon Sep 17 00:00:00 2001 From: mysticbbs Date: Wed, 20 Jun 2012 08:54:49 -0400 Subject: [PATCH] Changes --- mystic/HISTORY.txt | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/mystic/HISTORY.txt b/mystic/HISTORY.txt index 045ebd0..cb4e299 100644 --- a/mystic/HISTORY.txt +++ b/mystic/HISTORY.txt @@ -3959,7 +3959,7 @@ - MAKELANG has been removed from Mystic BBS distribution. - - MakeTHEME has been added to the Mystic BBS distribution. This utility + + MakeTHEME has been added to the Mystic BBS distribution. This utility works much like MAKELANG did but it has a few new options: 1) The ability to decompile prompt files. Keep in mind, comments are @@ -4128,3 +4128,16 @@ + NNTP server is now somewhat functional but does need quite a bit more work to make it good. It is now possible to enable it, but it has only been briefly tested with XNEWS and does not follow RFC stadards yet. + + + New MPL function FillChar similar to Pascal. IE: + + type + myuserrecord = record + username : string[30]; + somevalue : array[1..5] of byte; + end; + var + u : myuserrecord; + begin + fillchar(u, sizeof(u), #0); + end.