SOMLoadModule - Parameters
className (string)
The name of the class
whose DLL is to be loaded.
fileName (string)
The name of the DLL library
file. This can be either a simple name or a fully-qualified pathname.
functionName (string)
The name of the routine
to be called after the DLL is loaded. The routine is responsible for creating
a class object for each class in the DLL. Typically, this argument will
have the value SOMInitModule, obtained from the SOMClassInitFuncName
function. If no SOMInitModule entry exists in the DLL, the default
version of this function looks for a routine named NewClass instead. If
neither entry point is found, the default version of this function fails.
majorVersion (int)
The expected major version
number of the class, to be passed to the initialization routine of the DLL.
minorVersion (long)
The expected minor version
number of the class, to be passed to the initialization routine of the DLL.
modHandle (somToken *)
The address where
this function should place a token that can be subsequently used by the
SOMDeleteModule routine to unload the DLL.
rc (int)