Re: [lazarus] Program plugin

2006-02-26 Thread Michael Van Canneyt
On Sun, 26 Feb 2006, Philippe.martinole wrote: Yes, Interfaces are language independent. They only define what functions/procedures are available within an interface (and what calling convention). An Interface itself has no data or code. I' is only a quot;contractquot; that those

Re: [lazarus] Program plugin

2006-02-25 Thread Marc Weustink
L505 wrote: If you choose for a dll system, I would choose Interfaces (and indeed, don't pass strings, dyn arrays or classes) Marc I don't have much experience with interfaces and would like to learn more about them. Can you import/export one to and from other languages? i.e. c++/c/etc.

Re: [lazarus] Program plugin

2006-02-25 Thread Marc Santhoff
Am Samstag, den 25.02.2006, 18:30 +0100 schrieb Marc Weustink: Yes, Interfaces are language independent. They only define what functions/procedures are available within an interface (and what calling convention). An Interface itself has no data or code. I' is only a contract that those

Re: [lazarus] Program plugin

2006-02-24 Thread L505
If you choose for a dll system, I would choose Interfaces (and indeed, don't pass strings, dyn arrays or classes) Marc I don't have much experience with interfaces and would like to learn more about them. Can you import/export one to and from other languages? i.e. c++/c/etc.

[lazarus] Program plugin

2006-02-23 Thread Andreas Berger
Could someone give me an idea? I am writing an application to which I hope to add functionality later. One option would be to simple send out the new exe to all users. However, I would like to implement a plugin system. So a new feature could simply be added and totaly integrated to the

Re: [lazarus] Program plugin

2006-02-23 Thread Mattias Gaertner
On Thu, 23 Feb 2006 13:35:18 -0300 Andreas Berger [EMAIL PROTECTED] wrote: Could someone give me an idea? I am writing an application to which I hope to add functionality later. One option would be to simple send out the new exe to all users. However, I would like to implement a plugin

Re: [lazarus] Program plugin

2006-02-23 Thread Andreas Berger
Mattias Gaertner wrote: On Thu, 23 Feb 2006 13:35:18 -0300 Andreas Berger [EMAIL PROTECTED] wrote: Could someone give me an idea? I am writing an application to which I hope to add functionality later. One option would be to simple send out the new exe to all users. However, I would like

Re: [lazarus] Program plugin

2006-02-23 Thread Alexander Todorov
On 2/23/06, Andreas Berger [EMAIL PROTECTED] Thanks, I'll take a look. You can check RemObjects' Pascal Script. Add some classes / functions that can be accessed from the script and then use it to communicate with the main application.

Re: [lazarus] Program plugin

2006-02-23 Thread L505
Could someone give me an idea? I am writing an application to which I hope to add functionality later. One option would be to simple send out the new exe to all users. However, I would like to implement a plugin system. So a new feature could simply be added and totaly integrated to the