lazarus/components/lazutils/lazutf8sysutils.pas
maxim 59fa6c6ad6 Merged revision(s) 59416 #07607b4bba, 59436 #93fbbb0db7 from trunk:
LazUtils: Raise exception in UTF8To... functions, controlled by a global boolean. Issue #33686, patch from AlexeyT.
........
LazUtils: Add LazUTF8SysUtils with "deprecated" warnings. The unit was renamed earlier.
........

git-svn-id: branches/fixes_2_0@59459 -
2018-11-05 12:02:37 +00:00

38 lines
825 B
ObjectPascal

{
*****************************************************************************
This file is part of LazUtils.
See the file COPYING.modifiedLGPL.txt, included in this distribution,
for details about the license.
*****************************************************************************
This unit was renamed to LazSysUtils.
Now just give "deprecated" warnings. Will be removed later.
}
unit LazUTF8SysUtils;
{$mode objfpc}{$H+}
interface
uses
LazSysUtils;
function NowUTC: TDateTime; deprecated 'Use the function from unit LazSysUtils.';
function GetTickCount64: QWord; deprecated 'Use the function from unit LazSysUtils.';
implementation
function NowUTC: TDateTime;
begin
result := LazSysUtils.NowUTC;
end;
function GetTickCount64: QWord;
begin
Result := LazSysUtils.GetTickCount64;
end;
end.