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 / tw7963.pp
Size: Mime:
{ %fail }
program fpcbug;

{$mode objfpc}

type
  TCallback = function(const a, b, c: pointer): integer; stdcall;

var
  Proc: TCallback;
  a,b: Pointer;

begin
  Proc(a, b);
  Proc(a, b, a, b);
end.