Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.0.0 / tests / webtbs / uw3474b.pp
Size: Mime:
{ Source provided for Free Pascal Bug Report 3474 }
{ Submitted by "Alexey Barkovoy" on  2004-12-26 }
{ e-mail: clootie@ixbt.com }
unit uw3474b;

interface

{$INLINE ON}
{$MODE DELPHI}
function V_Failed(Status: HRESULT): Boolean; inline;

implementation

uses uw3474a;

function V_Failed(Status: HRESULT): Boolean;
begin
  Result := Status <> 0;
end;

end.