While going through the TSPI_lineGetCallHubTracking() in MSDN library, I
found following,
The parameter hdLine states that this parameter is the Service Provider's
handle to the call whose call information is to be retrieved.
but actually hdLine is the handle to the Line rather than the call (right?).
Mohit
Mohit,
right, hdLine is a line handle (not a call handle).
BTW it's the same issue with TSPI_lineSetCallHubTracking() in MSDN SDK
documentation.
You may want to report the issues to the SDK team via the links at the
bottom of the MSDN online web pages (Send comments about this topic to
Microsoft)
I cross-checked the definitions in TSPI.H:
#if (TAPI_CURRENT_VERSION >= 0x00030000)
LONG
TSPIAPI
TSPI_lineGetCallHubTracking( // TSPI v3.0
HDRVLINE hdLine,
LPLINECALLHUBTRACKINGINFO lpTrackingInfo
);
#endif
#if (TAPI_CURRENT_VERSION >= 0x00030000)
LONG
TSPIAPI
TSPI_lineSetCallHubTracking( // TSPI v3.0
HDRVLINE hdLine,
LPLINECALLHUBTRACKINGINFO lpTrackingInfo
);
#endif
--
Best Regards
Andreas Marschall
Microsoft MVP for TAPI / Windows SDK / Visual C++ 2003-2008
TAPI / TSP Developer and Tester
My TAPI and TSPI FAQ:
http://www.I-B-A-M.de/Andreas_Marschall's_TAPI_and_TSPI_FAQ.htm
My Toto� Tools (a collection of free, mostly TAPI related tools):
http://www.i-b-a-m.de/Andreas_Marschall's_Toto_Tools.htm
TAPI development around the world (Frappr! map):
http://www.frappr.com/TAPIaroundTheWorld
* Please post all messages and replies to the newsgroup so all may
* benefit from the discussion. Private mail is usually not replied to.
* This posting is provided "AS IS" with no warranties, and confers no
rights.