Results 1 to 3 of 3

Thread: end_ methods not exported from DLL builds

  1. #1
    wilwil is offline Registered User
    Name: William Wilkinson
    Organization: Winton Capital
    Project: Trading System
    Join Date
    Apr 2010
    Posts
    2

    end_ methods not exported from DLL builds

    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.

  2. #2
    mes's Avatar
    mes
    mes is offline ZeroC Staff
    Name: Mark Spruiell
    Organization: ZeroC, Inc.
    Project: Ice Developer
    Join Date
    Feb 2003
    Location
    California
    Posts
    1,441
    Hi,

    Welcome to the forum!

    You're right about the end_ methods. Thanks for reporting this.

    Regards,
    Mark

  3. #3
    wilwil is offline Registered User
    Name: William Wilkinson
    Organization: Winton Capital
    Project: Trading System
    Join Date
    Apr 2010
    Posts
    2

    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
    @@ -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)
    {

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. ICEphp ... profile methods ..
    By manojsingh in forum Help Center
    Replies: 1
    Last Post: 03-22-2009, 10:53 AM
  2. Replies: 3
    Last Post: 10-05-2008, 04:45 PM
  3. Replies: 3
    Last Post: 05-02-2007, 09:51 AM
  4. Add methods to a Java sample ????
    By surfer in forum Help Center
    Replies: 8
    Last Post: 01-18-2006, 07:23 PM
  5. Local or server private methods
    By dashie in forum Help Center
    Replies: 6
    Last Post: 12-22-2004, 02:31 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •