|
||
|
GP Mailing List
ATXGPSIG List
|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [atxgpsig] Re: [atxgpsig]
It looks like the SETCODE macro being invoked is missing the first argument, or you have an extraneous comma. You wrote: SETCODE( , IP, IPaddress, 10, ipEqual(a, b)); Should be: SETCODE( something goes here , IP, IPaddress, 10, ipEqual(a, b)); Or: // removed first comma from argument list SETCODE( /*,*/ IP, IPaddress, 10, ipEqual(a, b)); I have no experience with net2sets.h, but the code you pasted in your email will not compile unless you make one of the above changes. Try removing the first comma. Evan On 12/20/06, Nasikat Tynaeva <nasishka@gmail.com> wrote: Sorry for disturbing you with such problem...
|
|