vote up 3 vote down star
1

Hello everybody...

I need to return objects from a DLL made in Delphi, to an app made in Delphi, too. The objective is to do a subsystem that can be modify in the future without to modify the main app. So, I imagine developing the subsystem in a DLL is a (good??) idea... i am programming in Windows XP, Delphi 7. I did read DLLs only return basic data type, but there must to be a way to do that...

Best regards.

flag
6  
This has been discussed several times already on StackOverflow. Search for questions tagged [delphi] and [dll] or [bpl]. There's probably nothing new to be said on the subject... – mghie Nov 4 at 21:09
Oh!! Great answer man!!! And how to found a good reply in hundreds of them???? – MLB Nov 4 at 22:17
1  
Look at stackoverflow.com/questions/1596704/… – Gerry Nov 4 at 22:50
2  
@MLB and by creating another duplicate, you're just adding to the problem. You could try reading some of the responses. – mrduclaw Nov 4 at 23:16
1  
@MLB: I've briefly toyed with the idea of starting a community answer with some of this information condensed, but your attitude makes me somewhat glad I didn't invest the time. If you can't be bothered to read the answers to some of the hottest topics in those search results I can't be bothered to help you either. But maybe you have the time to read this: slash7.com/pages/vampires – mghie Nov 5 at 5:24
show 2 more comments

4 Answers

vote up 1 vote down

I prefer to apply COM to such a model, which allows you to create external "objects" which you then can direct from within your application. Creating COM objects in Delphi is extremely simple, use your ActiveX creation methods to create an ActiveX library and then create COM objects. You then use the interface unit in your main application, and when you CoCreate an instance of the object it loads the appropriate DLL. The only tricky part of this is that your com objects must be registered on the system to function properly... which in the Win7/Vista world requires elevated access... although once this is done, it is seamless.

link|flag
vote up 0 vote down

The BEST way is to use a COM wrapper as suggested by skamradt.

It is possible, but not a good idea to pass object references as pointers to DLL's. Refer particularly to Peter Haas's comments.

If you do pass an object from a Delphi DLL to a Delphi app you will have the following problems:

You must use the same version of Delphi for the app and DLL.

Both app and DLL MUST have the same implementation of the object - or at least identical layout of all fields in the class - OK if you are using standard objects such as TStringList.

You should use shared memory or runtime packages, otherwise you will get weird access violations.

I have had to maintain code where this was done - it was nightmarish as you couldn't change classes without a lot of re-compiling.

link|flag
vote up 0 vote down

You can use interfaces and most of your problems, wrt compiler/rtl versions or even other languages just go away. Delphi's interfaces are always IUnknown-compatible, which makes them compatible with most OO-enabled languages on Windows.

One thing to keep in mind, though: Don't use AnyString, stick to WideString, which is the Stringtype used by COM.

link|flag
vote up 0 vote down

A platform- and language independent way could be to exchange serialized objects.

It has a performance impact, but it has advantages too: the DLL works without modifications with other languages and platforms like .Net or Java (via JNA Java Native Access). It does not depend on any special features of the operating system so it can as well be used on Linux or MacOS if you compile the library with Free Pascal.

For the serialization, you could use JSON or XML. There are open source libraries for Delphi, for example SuperObject and OmniXML.

link|flag

Your Answer

Get an OpenID
or

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