TEnableServer
Return to Introduction  Previous page  Next page
A pointer to a method of this type is passed by the server as a parameter to the VcsInitAddin method. This method can be called to enable the server after a call to the method of type TDisableServer.

type  
  TEnableServer = procedure; stdcall;  

Parameters

None

Example (Delphi)

procedure TMaintenanceThread.Execute;  
begin  
  DoDisableServer;  
  try  
    DoFlushBuffers;  
    ValidateTheRepository;  
  finally  
    DoEnableServer;  
  end;  
end;  


 


© 1995-2018 MCN Software