OK, I've got a VC++ application, and I need to do some data conversions.
Now, I'm thinking I want to have a script file, call it x.js. When the data conversion is going to happen, I want my VC++ app to read in x.js, set a variable called inputValue to the original data
x.js will modify inputValue, and set a variable called outputValue. The VC++ app will then extract the outputValue variable, and have the converted data.
Can anyone point me at how to do this in VC++. I've done it with java/jython before, but I'm sort of new to this.
Now, I'm thinking I want to have a script file, call it x.js. When the data conversion is going to happen, I want my VC++ app to read in x.js, set a variable called inputValue to the original data
x.js will modify inputValue, and set a variable called outputValue. The VC++ app will then extract the outputValue variable, and have the converted data.
Can anyone point me at how to do this in VC++. I've done it with java/jython before, but I'm sort of new to this.