vote up 3 vote down star

Hello buddies: I am programming a DLL. I have to return an instance of TBitmap to the host application. The DLL has another UNIT, wich is a Form, that it has a TImageList for storing images. I wrote a function that I want to return an Image from the TImageList (from the DLL to the host application. How can I do this?

Thanks, YuliƩn.

flag

50% accept rate
Please, show the problematic code. Otherwise we can only guess. – PiotrLegnica Oct 20 at 19:12
Could you be a little more specific? Most of us don't have magic spheres and some code might help. – Darin Dimitrov Oct 20 at 19:12
1  
Just a short terminology note: you can't return a type but only instances of a type. An object is NOT a type. – Smasher Oct 20 at 19:34

4 Answers

vote up -3 vote down

You can't return an object per se, but you can return a pointer to an object. Refer to Mastering Delphi 6 and this description of Vtables in delphi.

link|flag
Question was about Delphi, not C or VB. – Lars D Oct 20 at 19:50
OK, I can accept that. But the real problem here is return an object, which is not possible. The language the dll is written in is irrelevant. – DaveParillo Oct 20 at 20:29
1  
In Delphi, "return an object" means "return a pointer to the data structure that defines the object", and it is easily doable. – Lars D Oct 20 at 20:37
So, how can I do that in Delphi? – Yulien Oct 20 at 20:37
3  
There are differences between what one can return from a DLL, and what one should return from a DLL. Objects should never be returned from a DLL IMHO, as this requires the DLL to use the same memory manager as the host application to be on the safe side. Much better to create and destroy the object in the DLL, and return an opaque handle to the object from the DLL only, which is then used for all access. – mghie Oct 20 at 22:11
show 4 more comments
vote up 0 vote down

Objects are combinations of code and data. A normal DLL does not support that, because it only supports the C Application Binary Interface (C ABI) but there is a kind of DLLs that does: BPL files. In other words, you need to create a .bpl file and not a .dll file. This requires both that file and the user to be Delphi, of course.

link|flag
1  
It also requires that the BPL developer and the host application are using the same version of Delphi. – DaveParillo Oct 20 at 21:42
vote up 4 vote down

Read this old thread on borland.public.delphi.nativeapi: Delphi Object in DLL - does this work?.

The link to a .pdf in the last message is gone, but thanks to Internet Archive Wayback Machine one can download it (look at Exporting Objects from DLLs at page 412).

Edit: it turns out that book's interesting part, for our purpose, is also available @ Google Books, so one can read it on-line.

link|flag
vote up 2 vote down

Basically what you need to do is not return an object. In this case you want to return bitmap, why not just return HBitmap handle?

link|flag
Ok, and what if I have to return any other instace type??? – Yulien Oct 21 at 12:54
1  
For all Windows resource objects, like Window handle, File handle, thread id, brush etc, you can pass the native handle. If you need to pass complex object written in Delphi. You can do that by passing the object pointer. However both of your host app and dll must use the same unit that declares the object, which kind of defeats the purpose of dll. – Darkerstar Oct 21 at 15:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.