Fix dummy and wince fcl-process code after commit 54157a17

This commit is contained in:
Pierre Muller 2024-02-05 07:21:36 +00:00
parent b6ccf369b9
commit 7ffbbdd50b
2 changed files with 2 additions and 2 deletions

View File

@ -195,5 +195,5 @@ end;
function TIODescriptor.SysIsTypeSupported(AValue: TIOType): Boolean;
begin
Result:=aValue in [ioType,iotNone];
Result:=aValue in [ioType,iotDefault];
end;

View File

@ -384,7 +384,7 @@ var
Res : Boolean;
begin
if IOType in [iotNone,iotFile] then begin
if IOType in [iotDefault,iotFile] then begin
Result:=aHandle;
exit;
end;