oldfpccall

From Free Pascal wiki
Jump to navigationJump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Deutsch (de) English (en)

Back to Reserved words.

The oldfpccall modifier:

  • belongs to the calling conventions of internal and external subroutines;
  • is deprecated.

Example:

function subTest : string; [oldfpccall];
  begin
    subTest := 'abc';
  end;