CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Galois77

Search: Search took 0.02 seconds.

  1. Replies
    7
    Views
    9,408

    Re: Visual C++ to Borland C++ data exchange

    Hello there,

    Thank you for the ideas you provided.

    As mentioned, the only thing std::list shared between the two languages is the interface. The pointer sent from one side to the other made no...
  2. Replies
    7
    Views
    9,408

    Re: Visual C++ to Borland C++ data exchange

    Thanks for the reply; I don't know exactly what you are meaning by straight C.

    Would this mean only exchange data through plain structures? How would I deal with the situation when I need to...
  3. Replies
    7
    Views
    9,408

    Re: Visual C++ to Borland C++ data exchange

    Here's the content of the SavedUrlItem.h file:

    struct SavedUrlItem {
    char url[2048];
    char profile[256];
    char name[128];
    char value[512];
    int indexInPage;

    char designation;
  4. Replies
    7
    Views
    9,408

    Visual C++ to Borland C++ data exchange

    Hello,

    I'm working on a project that involves making two dlls: one of them is in Borland C++ (file1-bc.dll), the other one is in Visual C++ (file2-vc.dll). Right now I'm prototyping and trying to...
Results 1 to 4 of 4





Click Here to Expand Forum to Full Width

Featured