Core Function DLLImport
(Created page with "<pre> DLLImport( <varies...> ) </pre> === Description === Dynamically load a function from a DLL and transform it to act and behave like a normal Sputnik function (Can load tho...") |
(→Usage method 1) |
||
Line 17: | Line 17: | ||
It must be an array of all functions to import from DLLs | It must be an array of all functions to import from DLLs | ||
− | CLick | + | CLick [[Core Function DLLImport <Array>|DLLImport( <array> )]] to see how to use DLLImport with the single DLL to import DLL functions or to create a DLL file. |
==== Usage method 2 ==== | ==== Usage method 2 ==== |
Revision as of 18:26, 16 August 2013
DLLImport( <varies...> )
Contents |
Description
Dynamically load a function from a DLL and transform it to act and behave like a normal Sputnik function (Can load thousands functions at a time and even save the loaded stuff to DLL for quick access later).
Parameters
Usage method 1
If the only parameters is a single array it can work as follows :
Optional; The array can begin with a string containing the DLL name to save the DLLImport as such as "MyDLL.dll"
It must be an array of all functions to import from DLLs
CLick [[Core Function DLLImport <Array>|DLLImport( <array> )]] to see how to use DLLImport with the single DLL to import DLL functions or to create a DLL file.
Usage method 2
If you use 5-6 parameters then the DLLImport will be importing a single function from a single DLL.
Click HERE to see how to import a single function from a single DLL.
Return Value
Success: True
Failure: False
Remarks
None.