CAN I CALL A DLL FUNCTION AND PASS A REFERENCE FOR THIS FUNCTION?
FOR EXAMPLE:
MY DLL FUNCTION TAKE THE NAME OF THE COMPUTER AND STORE THIS RESULT IN A RECEIVED PARAMETER...
DLL.CallFunction("compnet.dll", "_ComputerName",
"\"%reference_variable%\"", DLL_RETURN_TYPE_LONG, DLL_CALL_STDCALL);
the name of the computer is the content of "reference_variable"

