I have a windows program that I need to pass a
string to via ColdFusion and have it return a value
back to Coldfusion. I understand the ColdFusion part,
but I am very new to C programming.
I'm assuming all you have to do is add an argument to the
main function, is this correct?
main(char externalstring[50]) {
}
Additionally, the program has 9 objects. I'm assuming you
place the nine objects in the folder ColdFusion accesses (map the path etc..) and just call the main object from ColdFusion. Does this sound correct? I compiled it as as WIn32 Console application. Can I just grab the object files or should I be creating a different type of program?
Any help is greatly appreciated.
James
string to via ColdFusion and have it return a value
back to Coldfusion. I understand the ColdFusion part,
but I am very new to C programming.
I'm assuming all you have to do is add an argument to the
main function, is this correct?
main(char externalstring[50]) {
}
Additionally, the program has 9 objects. I'm assuming you
place the nine objects in the folder ColdFusion accesses (map the path etc..) and just call the main object from ColdFusion. Does this sound correct? I compiled it as as WIn32 Console application. Can I just grab the object files or should I be creating a different type of program?
Any help is greatly appreciated.
James