Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Microsoft C 6.0 - <b> _export exports a function</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 _export                 Exports a Function

    The _export modifier specifies that a certain function can be
    exported. For example, _export name allows name to be exported
    to other files. Use _export to modify functions when writing
    protected-mode dynamic-link libraries. The _export modifier may also
    be used when defining Windows functions as in this example:

           void _export _far _pascal win_test(int mydata);

    Note, however, that _export forces the compiler to assume that the
    function has no input/output privilege, uses shared data, has no
    alias name, and is not resident. If you want to override these
    conditions, then you must provide a module definition file that
    specifically lists the function (as was normal before the
    introduction of _export).

See Also: extern

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson