added a dummy implementation of GetLastOSError

git-svn-id: trunk@24652 -
This commit is contained in:
Károly Balogh 2013-05-30 19:07:41 +00:00
parent b3c4450186
commit 24e2bd4364

View File

@ -26,6 +26,7 @@ interface
{$H+}
{$DEFINE HAS_SLEEP}
{$DEFINE HAS_OSERROR}
{ Include platform independent interface part }
{$i sysutilh.inc}
@ -561,6 +562,11 @@ begin
{ Result:=StrError(ErrorCode);}
end;
function GetLastOSError: Integer;
begin
result:=-1;
end;
{****************************************************************************
OS utility functions
****************************************************************************}