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 / tw7329.pp
Size: Mime:
{$MODE DELPHI}
unit tw7329;

interface

type
  IDirect3D9 = interface(IUnknown) end;
// IDirect3D9 = Integer; //todo: Uncomment this line and comment previous one to successfully compile with 2.0.4

function Direct3DCreate9(SDKVersion: LongWord): IDirect3D9; stdcall;

implementation

function Direct3DCreate9(SDKVersion: LongWord): IDirect3D9;
begin
end;

end.