Hi,
I've tried adding DLL to my efs study as per the documentation.
I created a few simple C++ DLLs in Visual Studio and exported them to a DLL. I added the DLL to the FunctionLibrary folder and appended x64 to the file name, (ex samplex64.dll).
When I try and load the DLL with
I'm getting the error, Function 'DLL': Failed to load 'sample.DLL': file not found. I've even just create a blank file with x64 at the end and dll extension and placed it inside FunctionLibrary and still get the could not be found error message.
I've tried adding DLL to my efs study as per the documentation.
I created a few simple C++ DLLs in Visual Studio and exported them to a DLL. I added the DLL to the FunctionLibrary folder and appended x64 to the file name, (ex samplex64.dll).
When I try and load the DLL with
PHP Code:
var d = new DLL( "sample.DLL");
Comment