I am accessing the dll from Javascript using JSCTypes. I have to receive data by passing a character buffer to the following api,
__declspec(dllexport) WORD WINAPI receive( LPWORD lpwBufferSize,
LPSTR lpsBuffer);
My jsctypes looks like this,
<code>
let receive = libs.dll.declare("receive",
ctypes.stdcall_abi,
ctypes.int32_t, //Return type- return code
ctypes.int32_t.ptr, // buffer size
ctypes.char.ptr, // Buffer
);
var bufferSize =new ctypes.int32_t(3000000).address(); //3000000
var buffer =new ctypes.char().address();
let rvopen = receive(bufferSize,buffer);
return buffer.readString()
</code>
With above code, I could receive data for the first time correctly but xulrunner crashes on receive funtion call in the subsequent times. I tried to reproduce this produce this issue with a common dll available on windows.This throws an exception, uncaught exception: TypeError: ctypes.char.array(500).address is not a function
<code>
var hostName = exports.getString = function() {
let lib= ctypes.open('Ws2_32.dll');
let gethostname=lib.declare("gethostname",
ctypes.default_abi,
ctypes.int,
ctypes.char.ptr,
ctypes.int);
var myArray = ctypes.char.array(500).address();
gethostname(myArray, 500);
return myArray.readString();
};
If I drop the address api call and try it as below,
var myArray = ctypes.char.array(64);
I run into this issue,Although in C++ arrays are considered as pointers.
'uncaught exception: TypeError: expected type pointer, got ctypes.char.array(640000)' in file '' at line 0, col 0
I dont have access to any of the dll's source code. I just have the include file(.h) for the dll.I am a java developer and not sure if I can debug without the source code Any help appreciated!