This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Can I develope the AGSI function by Borland C++ builder 5.0?

SPeriDLL, is a synonym for 'Sample Peripheral DLL' ,it is used by VC6.0,

Can I develope the AGSI function by
Borland C++ builder 5.0?

I wish do it !

Parents
  • OK, I fixed that one as follows:

    1. Build the DLL using BCB

    2. Generate a Module Definition File using

    impdef -a SPeriDLL.def SPeriDLL.dll

    3. Add an Alias without the underscore:
    EXPORTS
       AgsiEntry=_AgsiEntry @1

    4. Add the Module Definition File to the Project & rebuild.

    uVision now accepts the DLL, and the dialogue displays OK.

    However, uVision now causes a System Error when I exit the debug session...

Reply
  • OK, I fixed that one as follows:

    1. Build the DLL using BCB

    2. Generate a Module Definition File using

    impdef -a SPeriDLL.def SPeriDLL.dll

    3. Add an Alias without the underscore:
    EXPORTS
       AgsiEntry=_AgsiEntry @1

    4. Add the Module Definition File to the Project & rebuild.

    uVision now accepts the DLL, and the dialogue displays OK.

    However, uVision now causes a System Error when I exit the debug session...

Children