Sophie

Sophie

distrib > Mageia > 7 > armv7hl > media > core-release > by-pkgid > 9825acea20b8c1730a908ceb6b6baa6d > files > 72

fpc-doc-3.0.4-6.mga7.armv7hl.rpm

{$mode objfpc}
{$h+}

program testelcmd;

uses eventlog,sysutils;

Var
  E : TEventType;

begin
  With TEventLog.Create(Nil) do
    Try
      Identification:='Test eventlog class';
      RegisterMessageFile('');
      Active:=True;
      For E:=etInfo to etDebug do
        Log(E,'An event log message of type '+EventTypeToString(E));
    finally
      Free;
    end;
end.