using ITTAPI interface / determing which interfaces a dll exposes

  • Thread starter Thread starter Joe Momberg
  • Start date Start date
J

Joe Momberg

Hi

I'm trying to use the ITTAPI interface from my C# .NET Framework
application, but can't seem to reference it. I add a reference to
TERMMGRLib, and can see ITTerminal and others, but ITTAPI is not exposed.
Both these interfaces are defined in tapi3.h, I would assume that they're
both in tapi3.dll? If someone could alternatively describe how to see what
interfaces/methods a dll exposes, that'd help too

Thanks
Joe
 
As can be expected, I figured this out immediately after sending this post
:-P ITTerminal is from termmgr.dll, whereas ITTAPI is from tapi3.dll. I'd
still be interested in how to enumerate all the methods + interfaces that a
particular dll exposes though

Tnx
Joe
 
And again I've figured it out... ildasm.exe in visual studio does this for
one. Thought I'd pass on what I'd learnt from my visit from the knowledge
fairy
 
Back
Top