Toggle navigation
Categories
Discussions
Activity
Best Of...
Home
Documentation
Sign In
Home
›
Bug Reports
end_ methods not exported from DLL builds
wilwil
Member
William Wilkinson
Organization:
Winton Capital
Project:
Trading System
✭
April 2010
in
Bug Reports
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?
0
Comments
mes
California
Administrators, ZeroC Staff
Mark Spruiell
Organization:
ZeroC, Inc.
Project:
Ice Developer
ZeroC Staff
April 2010
Hi,
Welcome to the forum!
You're right about the end_ methods. Thanks for reporting this.
Regards,
Mark
0
wilwil
Member
William Wilkinson
Organization:
Winton Capital
Project:
Trading System
✭
April 2010
patch
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
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)
{
0
Sign In
or
Register
to comment.
Comments
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
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)
{