Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- The Guide To Clipper - <b>external</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
EXTERNAL


Syntax:     EXTERNAL <procedure list>

Purpose:    To declare symbol(s) for the linker.

Argument:   <procedure list> is the list of procedures, user-defined
            functions, and format files to add to the symbol table.

Usage:      Procedures and user-defined functions referenced with a
            macro variable should be declared EXTERNAL to ensure that
            they are present at runtime.  Macro references to overlayed
            procedures or user-defined functions may not be properly
            resolved by the linker if they are not declared EXTERNAL.

            Compiling: EXTERNAL causes the linker to link the named
            procedures or functions even if they are not explicitly
            referenced in the source file.

Library:    CLIPPER.LIB


----------------------------------- Examples -------------------------------

   EXTERNAL p1, p2, p3
   routine = "1"

   DO P&routine.        && P1 can be in an overlay.


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