> Thank you for answering me. I have tried to solve it writing:
> #undef FILETIME
[quoted text clipped - 85 lines]
>> >
>> > How can I solve it? Thanks.
If you look at the diagnostics that the OP got, you will realize
that the problem cannot be a preprocessor issue. The name
that gives rise to the ambiguity, (as a result of an unfortunate
use of the 'using' directive), is declared in both the global
namespace and the namespace he has dumped via 'using'.
He can #undef that name until Hell freezes over, but since
it was never #define'd in the first place, it will do no good.
When the OP finally fixes this, it will be by some variation
on the advice I gave days ago. Until then, all I can say is:
Have fun fiddling with the irrelevant preprocessor.

Signature
--Larry Brasfield
email: donotspam_larry_brasfield@hotmail.com
Above views may belong only to me.
> Hi,
>
[quoted text clipped - 91 lines]
>>> >
>>> > How can I solve it? Thanks.
Steve McLellan - 28 Jan 2005 13:11 GMT
Hi,
My apologies.
Steve
> If you look at the diagnostics that the OP got, you will realize
> that the problem cannot be a preprocessor issue. The name
[quoted text clipped - 113 lines]
>>>> >
>>>> > How can I solve it? Thanks.