Name

From Free Pascal wiki
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';