Board index » delphi » C++ DLL's, and using exported classes in Delphi

C++ DLL's, and using exported classes in Delphi

I've got a C++ DLL that exports a couple of classes and while I can find
some small amount of documentation on how to use C/C++ functions from
Delphi. I can't find anything that explains how to make use of classes
that are exported from DLL's.

Anyone out there able to offer some advice or pointers?

  Thanks in advance,

    Chris

--
ck...@{*word*104}g8t.com                      http://www.{*word*104}g8t.com/~cking

 

Re:C++ DLL's, and using exported classes in Delphi


Source Inside Com Microsoft Press

COM is a method for developing software components,small binary executables
that provide sevices for applications, operating systems and other
components.

COM is a language independent binairy standard

Delphi Objects (classes) are Com standard
C++ Objects(classes) are Com standard

ck...@{*word*104}g8t.com schreef in artikel
<3323c674.138566...@news.{*word*104}g8t.com>...

Quote
> I've got a C++ DLL that exports a couple of classes and while I can find
> some small amount of documentation on how to use C/C++ functions from
> Delphi. I can't find anything that explains how to make use of classes
> that are exported from DLL's.

> Anyone out there able to offer some advice or pointers?

>   Thanks in advance,

>     Chris

> --
> ck...@{*word*104}g8t.com                      http://www.{*word*104}g8t.com/~cking

Other Threads