Propagating changes from C into Java
I need to interface to an existing library of C functions which have the property of input parameters being used as output.
IE a C function may have the signature: int NWDS_PING(char *node, NWDS_ITEM_LIST *item_list).
The string node is used both as input and output for the function with the int return type indicating status of the request. My problem lies in that I need the java String passed into the native method from my java function to be altered to whatever it is modified to in the C process.
Any ideas on how to do this?
Thanking you kindly,

