Name

From Free Pascal wiki
Revision as of 00:49, 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 reserved word name:

  • belongs to the call of external subroutines;
  • is followed by the alias name of the subroutine.

Example:

  // Declaration of an external subroutine
   function GlobalMemoryStatusEx(var lpBuffer : TMemoryStatusEx) : BOOL;  stdcall; 
     external 'kernel32.dll' name 'GlobalMemoryStatusEx';