diff --git a/mystic/mutil_msgpack.pas b/mystic/mutil_msgpack.pas new file mode 100644 index 0000000..a2a4cd8 --- /dev/null +++ b/mystic/mutil_msgpack.pas @@ -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.