oldfpccall

From Free Pascal wiki
Revision as of 14:02, 21 February 2020 by Trev (talk | contribs) (English translation of German page)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

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;