Description:

The #import command is used insert preexisting binary data into your program. Unlike #include, which means any data in the file is assembled, #import reads the file and inserts it directly into the output binary, with no modifications made.

Usage:

#import file

Parameters:

File

The name of the file to import. The file can be relative or absolute and should be surrounded by quotation marks (")