/EXPORT (Exports a Function)

 

The latest version of this topic can be found at -EXPORT (Exports a Function).

EXPORT:entryname[,@ordinal[,NONAME]][,DATA]

  
## Remarks  
 With this option, you can export a function from your program so that other programs can call the function. You can also export data. Exports are usually defined in a DLL.  
  
 The *entryname* is the name of the function or data item as it is to be used by the calling program. `ordinal` specifies an index into the exports table in the range 1 through 65,535; if you do not specify `ordinal`, LINK assigns one. The **NONAME** keyword exports the function only as an ordinal, without an *entryname*.  
  
 The **DATA** keyword specifies that the exported item is a data item. The data item in the client program must be declared using **extern __declspec(dllimport)**.  
  
 There are three methods for exporting a definition, listed in recommended order of use:  
  
1.  [__declspec(dllexport)](../Topic/dllexport,%20dllimport.md) in the source code  
  
2.  An [EXPORTS](../Topic/EXPORTS.md) statement in a .def file  
  
3.  An /EXPORT specification in a LINK command  
  
 All three methods can be used in the same program. When LINK builds a program that contains exports, it also creates an import library, unless an .exp file is used in the build.  
  
 LINK uses decorated forms of identifiers. The compiler decorates an identifier when it creates the .obj file. If *entryname* is specified to the linker in its undecorated form (as it appears in the source code), LINK attempts to match the name. If it cannot find a unique match, LINK issues an error message. Use the [DUMPBIN](../Topic/DUMPBIN%20Reference.md) tool to get the [decorated names](../Topic/Decorated%20Names.md) form of an identifier when you need to specify it to the linker.  
  
> [!NOTE]
>  Do not specify the decorated form of C identifiers that are declared `__cdecl` or `__stdcall`.  
  
### To set this linker option in the Visual Studio development environment  
  
1.  Open the project's **Property Pages** dialog box. For details, see [Setting Visual C++ Project Properties](../Topic/Working%20with%20Project%20Properties.md).  
  
2.  Click the **Linker** folder.  
  
3.  Click the **Command Line** property page.  
  
4.  Type the option into the **Additional Options** box.  
  
### To set this linker option programmatically  
  
-  See [AdditionalOptions](assetId:///P:Microsoft.VisualStudio.VCProjectEngine.VCLinkerTool.AdditionalOptions?qualifyHint=False&autoUpgrade=True).  
  
## See Also  
 [Setting Linker Options](../Topic/Setting%20Linker%20Options.md)   
 [Linker Options](../Topic/Linker%20Options.md)