instead of the dot operator use pointer operator
myClient->call(serverUrl, methodName, "ii", &result, 5, 7);
But make sure the pointer is a valid pointer -- it has to be initialized to something before the above line can be successfully executed.
myClient = new xmlrpc_c::clientSimple;
Ancient Dragon
Retired & Loving It
30,049 posts since Aug 2005
Reputation Points: 5,662
Solved Threads: 2,343
undefined symbol indicates the compiler does not know what that smbol is -- it has not been declared in any of the header files or before it was used. I suspect your program may be missing a header file or a macro of some kind. Search the header file where you THINK it is supposed to be defined to see that it really is there. If its there then check if there is a conditional macro, might be something like this:
#ifdef _WIN32
// define the symbol here
#endif
Ancient Dragon
Retired & Loving It
30,049 posts since Aug 2005
Reputation Points: 5,662
Solved Threads: 2,343