#loadScript

C Scripting Language
Reference Manual
Version 4.4.0

<< Back  End  Next >>
 
 
INDEX
Introduction
Installation
Using the CSL executive
Language
Directives
   #include
   #list
   #loadLibrary
   #loadScript
   #logFile
   #if / #else / #endif
   #message
   #error
   #block
System library
String library
Math library
Regular expression lib.
File library
Database library
Async Communication
Registry/Profile handling
Windows control
C API
C++ Class Interface
CSL links
  

Compiles another csl source file at compile time.

#loadScript 'MyFuncs'

... or ...

static const module = 'MyFuncs';
 
#loadScript module

If no extension is given, CSL will add the default extension .csl. The file is searched in the current working directory and in the paths defined in environment variable CSLPATH.

CSL will never load the same script more than once. Any attempt to do so will be silently ignored.

  Copyright © IBK Landquart Last revision: 27.05.2002 << Back  Top  Next >>