-- CIFSFeedback.mesa
-- Interface for CIFS to report STP activities
-- Coded by M. D. Schroeder, July 16, 1982 1:49 pm
-- Last edited by
-- MBrown on August 30, 1982 1:24 pm
DIRECTORY
Rope: TYPE USING [ROPE];
CIFSFeedback: CEDAR DEFINITIONS = {
Register: PROC [p: PROC [Rope.ROPE] ← NIL];
-- CIFS will call the registered procedure with a Rope describing each
--file manipulation activity on a remote server. Registering p ~ NIL will
--stop such reporting.
-- The style of use is: pass a non-empty rope at the start of an activity,
--pass an empty rope (e.g. NIL) at the end of the activity.
}..
CHANGE LOG
Changed by MBrown on August 30, 1982 1:24 pm
-- Interface is CEDAR.