While migrating some of our software to use the new typesafe asynch callbacks from a DLL, the end_xxx methods appear not to be exported from the DLL. Am I missing something?
|
|
While migrating some of our software to use the new typesafe asynch callbacks from a DLL, the end_xxx methods appear not to be exported from the DLL. Am I missing something?
Last edited by wilwil; 04-08-2010 at 11:29 AM.
Hi,
Welcome to the forum!
You're right about the end_ methods. Thanks for reporting this.
Regards,
Mark
Not sure if it fixes all cases, but it seems to have fixed my broken build:
--- ../old/Gen.cpp 2010-02-25 15:55:42.000000000 +0000
+++ Gen.cpp 2010-04-09 08:28:48.553682100 +0100
@@ -2515,7 +2515,7 @@
H << nl << "return begin_" << name << spar << argsAMI << "&__ctx" << "__del" << "__cookie" << epar << ';';
H << eb;
- H << sp << nl << retS << " end_" << name << spar << outParamsDeclAMI
+ H << sp << nl << _dllExport << retS << " end_" << name << spar << outParamsDeclAMI
<< "const ::Ice::AsyncResultPtr&" << epar << ';';
if(generatePrivateEnd)
{
There are currently 1 users browsing this thread. (0 members and 1 guests)