import

Controls the importing of data or functions.

Syntax
#pragma import on | off | reset
#pragma import list name1 [, name2 ]*

Targets
All platforms.
Remarks

When using the #pragma import on format, all functions are automatically imported.

When using the #pragma import list format, use to tag data or functions for importing. It applies to all names if it is used on an overloaded function. You cannot use this pragma for C++ member functions or static class members. An example of an imported list:

extern int f(),g;
#pragma import list f,g

This pragma does not correspond to any panel setting. To check this setting, use __option (import), described in Checking Settings. The default setting is off.