Language:
Русский
English
$I: Include File Directive
Instructs the compiler to include the named file in the compilation.
Syntax: {$I FileName}
Type: Local
Remarks
The default extension for FileName is .PAS.
If FileName does not specify a directory, the IDE searches for the file
- first in the current directory
- then in the directories specified in the Include Directories input box
(or in the directories you specified in the /I option on the TPC command
line)
The included file is inserted in the compiled text right after the $I FileName directive. You can nest Include files up to 15 levels deep.
NOTE: An Include file cannot be specified in the middle of a statement part.
All statements between the begin and end of a statement part must reside in the same source file.