Dll programming
My Vbasic application can't see the functions I exported from a Dll made in
C++ Builder.
What have I do the export them?
[133 byte] By [
Agustin] at [2007-11-10 12:51:51]

# 1 Re: Dll programming
"Agustin" <agustin_vip@hotmail.com> wrote:
>
>My Vbasic application can't see the functions I exported from a Dll made
in
>C++ Builder.
>What have I do the export them?
Add the function-names to the EXPORTS-section in your .def-file. Some compilers
support the _export statement in the source-code. E.g.: void _export Bla(int
test) exports the function Bla.
Regards
Markus
mb1611 at 2007-11-11 20:40:32 >
