mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 18:09:30 +02:00
* part of eventlog
This commit is contained in:
parent
56ebcd1249
commit
3f63323fdd
@ -1,73 +0,0 @@
|
||||
{
|
||||
$Id$
|
||||
This file is part of the Free Pascal run time library.
|
||||
Copyright (c) 2003 by the Free Pascal development team
|
||||
|
||||
Generic implementation of 'system log' event mechanism which maps to file log.
|
||||
|
||||
See the file COPYING.FPC, included in this distribution,
|
||||
for details about the copyright.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
|
||||
**********************************************************************}
|
||||
|
||||
Function TEventLog.DefaultFileName : String;
|
||||
|
||||
begin
|
||||
Result:=ChangeFileExt(ExtractFileName(Paramstr(0)),'.log');
|
||||
end;
|
||||
|
||||
Procedure TEventLog.ActivateSystemLog;
|
||||
|
||||
begin
|
||||
CheckIdentification;
|
||||
ActivateFileLog;
|
||||
end;
|
||||
|
||||
Procedure TEventLog.DeActivateSystemLog;
|
||||
|
||||
begin
|
||||
DeActivateFileLog;
|
||||
end;
|
||||
|
||||
procedure TEventLog.WriteSystemLog(EventType : TEventType; Msg : String);
|
||||
|
||||
begin
|
||||
WriteFileLog(EventType,Msg);
|
||||
end;
|
||||
|
||||
Function TEventLog.RegisterMessageFile(AFileName : String) : Boolean;
|
||||
|
||||
begin
|
||||
Result:=True;
|
||||
end;
|
||||
|
||||
function TEventLog.MapTypeToCategory(EventType: TEventType): Word;
|
||||
begin
|
||||
Result:=0;
|
||||
end;
|
||||
|
||||
function TEventLog.MapTypeToEventID(EventType: TEventType): DWord;
|
||||
|
||||
begin
|
||||
Result:=0;
|
||||
end;
|
||||
|
||||
function TEventLog.MapTypeToEvent(EventType: TEventType): DWord;
|
||||
|
||||
begin
|
||||
Result:=0;
|
||||
end;
|
||||
|
||||
{
|
||||
$Log$
|
||||
Revision 1.1 2003-10-06 21:01:06 peter
|
||||
* moved classes unit to rtl
|
||||
|
||||
Revision 1.1 2003/02/19 20:25:16 michael
|
||||
+ Added event log
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user