Near

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 reserved word near:

  • belongs to 16 bit programming (DOS, Windows 3.x);
  • allows subroutines in memory areas to be started only within the 64KB limit;
  • allows DLLs in memory areas to be accessed only within the 64KB limit;
  • became obsolete with 32-bit programming.


Example:

  ...
  procedure subTest; near;
  ...