Bookshelf Home | Contents | Index | PDF | ![]() ![]() |
Siebel eScript Language Reference > Siebel eScript Commands > The SElib ObjectIn Siebel eScript, the SElib object allows calling out to external libraries and applications. SElib.dynamicLink() MethodWindows SyntaxSElib.dynamicLink(Library, Procedure, Convention[, [desc,] arg1, arg2, arg3, ..., argn]) UNIX SyntaxSElib.dynamicLink(Library, Procedure[, arg1, arg2, arg3, ...argn]) UsageThe calling convention must be one of the following:
Values are passed as 32-bit values. If a parameter is undefined when SElib.dynamicLink() is called, then it is assumed that the parameter is a 32-bit value to be filled in; that is, the address of a 32-bit data element is passed to the function, and that function sets the value. If any parameter is a structure, then it must be a structure that defines the binary data types in memory to represent the following variable. Before calling the function, the structure is copied to a binary buffer as described in Blob.put() Method and Clib.fwrite() Method. After calling the function, the binary data are converted back into the data structure according to the rules defined in Blob.get() and Clib.fread(). Data conversion is performed according to the current BigEndianMode setting. The function returns an integer. ExampleThe following code example shows a proxy DLL that takes denormalized input values, creates the structure, and invokes a method in the destination DLL. In the process, it calls the SElib dynamicLink. #include <windows.h> The following example shows the eScript code required to invoke a DLL. In this code, the Buffer is used for pointers and characters. function TestDLLCall3() SElib.dynamicLink("jddll.dll", "score", CDECL, var r_churn_score = R_CHURN_SCORE.getValue(8, "float"); The following code calls a DLL function in the default codepage. var sHello = "Hello"; The following code calls a DLL function that passes Unicode strings. var sHello = "Hello"; The following code calls a DLL function that passes both Unicode and non-Unicode strings. var sHello = "Hello"; The following example shows how to call an external application and pass it arguments (0, 0, and 5). SElib.dynamicLink("shell32", "ShellExecuteA", STDCALL, 0, "open", "c:\\Grabdata.exe", 0, 0, 5). See also |
![]() |
![]() ![]() |
Siebel eScript Language Reference |