Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

code not administrate

Status
Not open for further replies.

ern297

Programmer
Nov 28, 2002
13
0
0
ES
Hi,

I've the next problem. I need to use a function from one old library in a member function of a administrate class. When I try to use

#include "myFunctions.h"

I recive a lot of errors as

'IServiceProvider': ambiguous symbol.

I'm lost. Can Anybody help me?

Thanks.
 
It could be several things; you'd have to give some specifics to get a good answer.

Just a thought: do you have include guards on your "myFunctions.h"?

i.e.

Code:
#ifndef SOMETHING
#define SOMETHING
...
#endif
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top