Table of Content
HAL Forum
function Boolean ServerMode (
)
Description:
Specifies if Application runs in Server Mode
global
updating procedure OnApplicationStartup()
begin
  ExportPublicIPs;
  if (ServerMode or SingleUserMode) then begin
    if (LastSesTerminated!=0) then begin
      SMSWhenNotProperlyTerminated;
    end;
  end;
  return;
end;

Related topics:
««