Initial import

This commit is contained in:
mysticbbs 2012-09-08 04:27:35 -04:00
parent 7288affa28
commit cde7fb8e12
1 changed files with 25 additions and 0 deletions

25
mystic/mutil_msgpack.pas Normal file
View File

@ -0,0 +1,25 @@
Unit MUTIL_MsgPack;
{$I M_OPS.PAS}
Interface
Procedure uPackMessageBases;
Implementation
Uses
m_Strings,
mUtil_Common,
mUtil_Status;
Procedure uPackMessageBases;
Begin
ProcessName ('Packing Message Bases', True);
ProcessResult (rWORKING, False);
ProcessStatus ('Complete');
ProcessResult (rDONE, True);
End;
End.