I have this C code in a library "pruebaChar.so" for use with jsctypes:
char * ejecutarComando(char * miComando){
return miComando;
}
Then, I have this other code for call "pruebaChar.so":
function miComando(unComando) {
var {Cu} = require("chrome");
var {ctypes} = Cu.import("resource://gre/modules/ctypes.jsm", null);
var lib = ctypes.open("/home/usuario/pruebaChar.so");
var comandoLib = lib.declare("ejecutarComando",
ctypes.default_abi,
ctypes.char, // return type is correct?
ctypes.char.ptr // argument type is correct?
);
/* How do I pass the argument to function
and save the return value from function?*/
var returnString = comandoLib(unComando); // Is this correct?
return ???;
}
What values should I put in return type and argument type? How do I pass the argument to function and save the return value from function?
Thank you very much :)
Instead of
ctypes.char
try usingctypes.char.ptr
and for first argument of string it looks like it would work. which is alsoctypes.char.ptr
.here's an example of someone doing a x11 jsctypes with string as return:
declaring it: https://github.com/foudfou/FireTray/blob/a0c0061cd680a3a92b820969b093cc4780dfb10c/src/modules/ctypes/linux/gtk.jsm#L138
this is just lazy binding but it converts to:
then he uses it like this:https://github.com/foudfou/FireTray/blob/0fee978ec353f1153865541d286fe6c8adacdf4b/src/modules/linux/FiretrayWindow.jsm#L141
libc.strcmp
for c string comparison. so i think you would have to maybe dowinTitle.readString()
to get the string into your js. maybe not, im not sure, maybe a awinTitle.contents
would work too.Im not pro a js-ctypes but if you can send me your
.so
file and tell me a bit about i can get it to work and let you know.