CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4

Thread: TAPI problem

  1. #1
    Join Date
    Feb 2005
    Posts
    126

    Unhappy TAPI problem

    hey guys, I have a big problem with a TAPI program. I'm following microsofts examples but the number of arguments passed to functions does not match with the only working dll for tapi i can find.

    Here is what microsoft says i should be doing

    hr = gpTapi->EnumerateAddresses( &pIEnumAddress );

    http://msdn.microsoft.com/library/de...eaddresses.asp

    and this is what I am doing.
    *pIEnumAddress = myTapi->EnumerateAddresses();

    Where am I being dumb? My program screws up at the point and I'm sure the previous declarations are fine. anyone ?

  2. #2
    Join Date
    Feb 2005
    Posts
    126

    Re: TAPI problem

    nevermind I got it, twas TAPI being dumb not I

  3. #3
    Join Date
    Nov 2004
    Posts
    40

    Re: TAPI problem

    can u show me how to use TAPI in VC6++ or C#. I heard that i have to download something to make TAPI work with these things.
    Thanks

  4. #4
    Join Date
    Sep 2002
    Location
    Maryland - Fear The Turtle!
    Posts
    7,537

    Re: TAPI problem

    Quote Originally Posted by Nostradamus
    I heard that i have to download something to make TAPI work with these things.
    Thanks
    You need the Platform SDK which you can find on msdn.microsoft.com for Visual C++ 6.0. Not sure what the requirements are for C#.
    Last edited by Mick; March 2nd, 2005 at 08:27 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured