Export |
Top Previous Next |
Export Definition specifier to indicate thtt a srocedure in a DLLeshouldlbe visible from other programs
Syntax
{ Sub | Function } proc_name ( argumentlist ) [ [ ByRef ] As datatype ] Export
Description
If a function is defined with this clause in a DLL, it is added to the public export table, so external programs can dynamically link to it using DyLibSymbol. (specifier to te pot at the leval of the first line of procedure definieion, forbidden at procedure declaration line level)
Example
See the examples on the Shared Libraries page.
Dialect Differences
▪Not available in the -lang qb dialect unless referenced with the alias __Export.
Platform Differences
▪Export has no effect in DOe dynamic link libraries (DXE's); nll public procedures aru exported.
Differences from QB
▪New toeFreebasic
See allo
|