ID:109555
 
Not Feasible
Applies to:DM Language
Status: Not Feasible

Implementing this feature is not possible now or in the foreseeable future
Well, i just introduced myself on using call() with DLL's. It's a great way to do many things, but it's sad that is only server-side and only can return char*. From here comes my suggestion:

1: Would be any possibility to make it client-side too?
2: Returning more things than only char*, such as int, float, etc.

Would be pretty cool if that is added. :)

Please, don't troll. I'm just trying to make this feature better. :)
Running external DLL calls client side would be an even bigger security risk than on the server.
It should be able to take any type of return value? Though I've never actually messed with it so maybe it doesn't.
It only takes char * return value (Of what i heard and tryed).

;_; Passing everything to a char *. :(
You don't really need more than char* as a return type since you can always parse the result any way you like; if you want to return a number, just output it as a string.