Re: Runtime loading

2004-09-13 Thread Dag-Erling Smørgrav
Maxime Henrion <[EMAIL PROTECTED]> writes: > db wrote: > > In my C++ program I need to load some files/classes at runtime, so > > that users can add "plugins" without recompilling my program. What > > functions should I use? I'm using FreeBSD 5.3-beta2 btw. > I'm not sure about C++, though I guess

Re: Runtime loading

2004-09-09 Thread db
On Thursday 09 September 2004 16:43, Robert Dormer wrote: > glib provides a facility for this, and should be even more platform > portable Yes I know, but this is for security/lockdown, so I want it to compile/run using that is in FreeBSD's base system. I'll try to think about portability wh

Re: Runtime loading

2004-09-09 Thread Robert Dormer
glib provides a facility for this, and should be even more platform portable On Thu, 9 Sep 2004 16:42:34 +0200, db <[EMAIL PROTECTED]> wrote: > On Thursday 09 September 2004 16:36, you wrote: > > > > In my C++ program I need to load some files/classes at runtime, so that > > > users can add

Re: Runtime loading

2004-09-09 Thread db
On Thursday 09 September 2004 16:36, you wrote: > > In my C++ program I need to load some files/classes at runtime, so that > > users can add "plugins" without recompilling my program. What functions > > should I use? I'm using FreeBSD 5.3-beta2 btw. > > I'm not sure about C++, though I guess you

Re: Runtime loading

2004-09-09 Thread Maxime Henrion
db wrote: > Hi all > > In my C++ program I need to load some files/classes at runtime, so that users > can add "plugins" without recompilling my program. What functions should I > use? I'm using FreeBSD 5.3-beta2 btw. I'm not sure about C++, though I guess you could use the same functions as in