[<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 LIBRARY                       Create DLL and name it
------------------------------------------------------------------------------

 Purpose  : Create a DLL and name it

 Syntax   : LIBRARY [libname] [INITGLOBAL | INITINSTANCE]
            [PRIVATELIB] [WINDOWAPI]

 Example  : LIBRARY mydll

 This command indicates that the resulting executable will in fact be a
 dynamic link library. If a name is not specified then the name of the
 executable file is taken.

 The INITGLOBAL keyword tells Windows that it should keep one data area for
 all instances of the DLL, while the INITINSTANCE keyword tells Windows to
 keep separate data areas for each instance of the DLL. INITINSTANCE is the
 default.

 The PRIVATELIB keyword tells Windows that only one program can use the DLL.

 The WINDOWAPI keyword tells Windows that the DLL conforms to the Windows
 programming API, and is the default.

This page created by ng2html v1.05, the Norton guide to HTML conversion utility. Written by Dave Pearson