| To: | realbasic-nug at lists dot realsoftware dot com |
|---|---|
| Subject: | Re: C++ Libraries for RB (A little bit off) |
| From: | "Craig A. Finseth" <fin at finseth dot com> |
| Date: | Thu, 30 Dec 2004 14:45:17 -0600 (CST) |
| Cc: | realbasic-nug at lists dot realsoftware dot com |
| Delivered-to: | realbasic-nug at lists dot realsoftware dot com |
| References: | <1906DF0E-5A9E-11D9-AB40-000A9578809A at epicodeinteractive dot com> <8FA065D8-5A9E-11D9-8A9B-000393101B4A at mobleybros dot com> <DCB0C160-5AA2-11D9-B1D0-000A95A0549A at comcast dot net> |
...
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;
}
Probably as either:
int getMyNum(int fnum, int snum)
{
int tnum;
tnum = fnum + snum;
return tnum;
}
or:
int getMyNum(int fnum, int snum)
{
return fnum + snum;
}
Craig
_______________________________________________
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>
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: Simple but mathematically valid encryption, Keith Hutchison |
|---|---|
| Next by Date: | Re: Simple but mathematically valid encryption, Leonard Rosenthol |
| Previous by Thread: | Re: C++ Libraries for RB (A little bit off), John Jobe |
| Next by Thread: | Re: C++ Libraries for RB (A little bit off), John Jobe |
| Indexes: | [Date] [Thread] [Top] [All Lists] |