#loadLibrary

C Styled Script
Reference Manual

<< Back  End  Next >>
 
 
INDEX
Introduction
Installation
Using The CSS Executive
Language
Directives
   #include
   #list
   #loadLibrary
   #loadScript
   #logFile
System Library
String Library
Regular Expression Lib.
File Library
Database Library
C API
C++ API
CSS Links
  

Load a DLL during compile time. Argument is the library name:

#loadLibrary 'KcSysLib'

... or ...

const x1 = 'Kc', x2 = 'SysLib';
 
#loadLibrary x1+x2

If no extension is given .dll is assumed.

OS/2:
The library is searched in all directories listed by LIBPATH in CONFIG.SYS, or in the environment variables BEGINLIBPATH and ENDLIBPATH.

Win32:
The library is searched in the directory where CSS.EXE is (respectively your own VisualAge C++ Program using the CSS API), the current directory, and all directories listed in the PATH environment variable.

CSS will never load the same library more than once. Any attemp to do so will be silently ignored.

 Copyright © IBK LandquartLast revised by Peter Koch, 24.02.00<< Back  Top  Next >>