Shared library would be the goal in this case I suppose...
Does this
http://www.tldp.org/HOWTO/Program-Library-HOWTO/shared-libraries.html
look like it would set someone on the right path if one has never made
a shared library, but has done some simple C/C++ ?
On Dec 30, 2004, at 2:44 PM, Norman Palardy wrote:
On Dec 30, 2004, at 1:39 PM, John Jobe wrote:
Just for the fun of it...
How would one go about doing it using plain old GCC and not making a
plugin...
For example something as simple as what was proposed,
int getMyNum(int fnum, int snum)
{
int tnum;
return tnum = fnum + snum;
}
You either make a shared library and call it using a declare, or a
plugin.
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>
|