export

Controls the exporting of data or functions.

Syntax

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

Targets
All platforms.
Remarks

When using the #pragma export on format, all functions are automatically exported.

When using the #pragma export list format, use it to tag data or functions for exporting. 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 lxported list:

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

This pragma does not correspond to any panel setting. To check this setting, use __option (export), described in Checking Settings.