Using the Library
-
Hi, I want to pass the reference(test) of the interface (ITest) define inside the COM DLL (TestCom.dll) in my application function.Example GetMerchItemType( TestComLib::ITest &test, int Temp) However I am facing the following error. error C2653: 'TestComLib' : is not a class or namespace name error C2061: syntax error : identifier 'ITest' Can you please help me resolve this error. Thanks :) -- modified at 3:42 Friday 10th March, 2006
-
Hi, I want to pass the reference(test) of the interface (ITest) define inside the COM DLL (TestCom.dll) in my application function.Example GetMerchItemType( TestComLib::ITest &test, int Temp) However I am facing the following error. error C2653: 'TestComLib' : is not a class or namespace name error C2061: syntax error : identifier 'ITest' Can you please help me resolve this error. Thanks :) -- modified at 3:42 Friday 10th March, 2006
-
Hi, I want to pass the reference(test) of the interface (ITest) define inside the COM DLL (TestCom.dll) in my application function.Example GetMerchItemType( TestComLib::ITest &test, int Temp) However I am facing the following error. error C2653: 'TestComLib' : is not a class or namespace name error C2061: syntax error : identifier 'ITest' Can you please help me resolve this error. Thanks :) -- modified at 3:42 Friday 10th March, 2006
Search for the definition of
ITest
. Is it enclosed in anamespace
calledTestComLib
? I assume you're using#import
. If you are you'll need to look in the .TLH and .TLI files. Steve