Hello, I am passing data from C++ to the Eclipse end and trying to get it back using yield/2 method as follows: Here, I have to pass the string "ABC" to the Eclipse and get the Result(value = 3) back to the C++ and print it. Can you suggest me how can it be done? Eclipse code: :- module(module3). :- export test/1. test(Arg1):- Result is 3, yield(Result,Arg1). C++ code : EC_ref Result; EC_word W="ABC"; //compile the module1.pl file import test/1 from module1 post_goal(term(EC_functor("test",1), W)); if(EC_resume()==EC_yield){ if(EC_resume(W,Result)==EC_yield) { post_goal(term(EC_functor("writeln",1),Result)); cout << "yield done" ; } } Thanks and Regards, Archana. This e-mail and any files transmitted with it are for the sole use of the intended recipient(s) and may contain confidential and privileged information. If you are not the intended recipient, please contact the sender by reply e-mail and destroy all copies of the original message. Any unauthorised review, use, disclosure, dissemination, forwarding, printing or copying of this email or any action taken in reliance on this e-mail is strictly prohibited and may be unlawful.Received on Mon Jun 09 2008 - 05:24:20 CEST
This archive was generated by hypermail 2.2.0 : Thu Feb 02 2012 - 02:31:58 CET