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...")
Newer edit →
Revision as of 18:25, 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 HERE 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.