Re: [Lazarus] How to access libraries from other languages?

2015-02-16 Thread Sven Barth
Am 16.02.2015 20:52 schrieb "Chavoux Luyt" : > I was maybe thinking more low-level (e.g. when using a compiled C++ library without the source code)? All C++ class methods are translated into (mangled) functions in any case, so as long as Lazarus can wrap these as methods in a class of its own it sh

Re: [Lazarus] How to access libraries from other languages?

2015-02-16 Thread Chavoux Luyt
Hi again... On 16 February 2015 at 16:05, wrote: > From: Den > Subject: Re: [Lazarus] How to access libraries from other languages? > To: lazarus@lists.lazarus.freepascal.org > Message-ID: <54e1e6ca.3030...@gmail.com> > Content-Type: text/plain; charset=window

Re: [Lazarus] How to access libraries from other languages?

2015-02-16 Thread Sven Barth
Am 16.02.2015 13:47 schrieb "Den" : > > Indeed.. It's no easy task for sure. Sven would have to implement all features of the C++ Class that C++ supports. I'm guessing Sven is gonna go with the basic VMT C++ support, which would probably include virtual method overriding, am I right Sven? Mo

Re: [Lazarus] How to access libraries from other languages?

2015-02-16 Thread Sven Barth
Am 16.02.2015 11:19 schrieb "zeljko" : > > On 02/16/2015 11:08 AM, Sven Barth wrote: >> >> Am 16.02.2015 08:35 schrieb "zeljko" > >: >> >> > >> > On 02/16/2015 08:04 AM, Sven Barth wrote: >> >> >> >> Am 16.02.2015 04:48 schrieb "Den" > >> >>

Re: [Lazarus] How to access libraries from other languages?

2015-02-16 Thread Den
Indeed.. It's no easy task for sure. Sven would have to implement all features of the C++ Class that C++ supports. I'm guessing Sven is gonna go with the basic VMT C++ support, which would probably include virtual method overriding, am I right Sven? - Dennis On 2015-02-16 04:19 AM, zelj

Re: [Lazarus] How to access libraries from other languages?

2015-02-16 Thread zeljko
On 02/16/2015 11:08 AM, Sven Barth wrote: Am 16.02.2015 08:35 schrieb "zeljko" mailto:zel...@holobit.net>>: > > On 02/16/2015 08:04 AM, Sven Barth wrote: >> >> Am 16.02.2015 04:48 schrieb "Den" mailto:cyr...@gmail.com> >> >>: >> >> > >>

Re: [Lazarus] How to access libraries from other languages?

2015-02-16 Thread Sven Barth
Am 16.02.2015 08:35 schrieb "zeljko" : > > On 02/16/2015 08:04 AM, Sven Barth wrote: >> >> Am 16.02.2015 04:48 schrieb "Den" > >: >> >> > >> > lol, speaking of which Sven, what's the progress report on the C++ >> Classes? :D >> >> Currently not working on it. Generics and

Re: [Lazarus] How to access libraries from other languages?

2015-02-15 Thread zeljko
On 02/16/2015 08:04 AM, Sven Barth wrote: Am 16.02.2015 04:48 schrieb "Den" mailto:cyr...@gmail.com>>: > > lol, speaking of which Sven, what's the progress report on the C++ Classes? :D Currently not working on it. Generics and packages have higher priority. But I plan to continue it especiall

Re: [Lazarus] How to access libraries from other languages?

2015-02-15 Thread Sven Barth
Am 16.02.2015 04:48 schrieb "Den" : > > lol, speaking of which Sven, what's the progress report on the C++ Classes? :D Currently not working on it. Generics and packages have higher priority. But I plan to continue it especially since the API of our company's OS is C++ based ^^ Regards, Sven -- _

Re: [Lazarus] How to access libraries from other languages?

2015-02-15 Thread Den
lol, speaking of which Sven, what's the progress report on the C++ Classes? :D - Dennis On 2015-02-15 12:33 PM, Sven Barth wrote: On 15.02.2015 16:46, Chavoux Luyt wrote: Hi guys, The recent threat on Raspberry libraries made me think. I remember that it was possible in Delphi to access .ddl

Re: [Lazarus] How to access libraries from other languages?

2015-02-15 Thread Sven Barth
On 15.02.2015 16:46, Chavoux Luyt wrote: Hi guys, The recent threat on Raspberry libraries made me think. I remember that it was possible in Delphi to access .ddl libraries written in C or C++ (a bit more work) by wrapping them and using a "far" call? I did this a while ago, so not clear on the

[Lazarus] How to access libraries from other languages?

2015-02-15 Thread Chavoux Luyt
Hi guys, The recent threat on Raspberry libraries made me think. I remember that it was possible in Delphi to access .ddl libraries written in C or C++ (a bit more work) by wrapping them and using a "far" call? I did this a while ago, so not clear on the details anymore. Typically I would write a