Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

69 lines
2.0 KiB

  1. /****************************************************************************
  2. *
  3. * $Archive: S:/STURGEON/SRC/CALLCONT/VCS/chanman.h_v $
  4. *
  5. * INTEL Corporation Prorietary Information
  6. *
  7. * This listing is supplied under the terms of a license agreement
  8. * with INTEL Corporation and may not be copied nor disclosed except
  9. * in accordance with the terms of that agreement.
  10. *
  11. * Copyright (c) 1993-1994 Intel Corporation.
  12. *
  13. * $Revision: 1.20 $
  14. * $Date: 31 Jan 1997 13:44:24 $
  15. * $Author: MANDREWS $
  16. *
  17. * Deliverable:
  18. *
  19. * Abstract:
  20. *
  21. *
  22. * Notes:
  23. *
  24. ***************************************************************************/
  25. HRESULT InitChannelManager();
  26. HRESULT DeInitChannelManager();
  27. HRESULT AllocAndLockChannel( PCC_HCHANNEL phChannel,
  28. PCONFERENCE pConference,
  29. CC_HCALL hCall,
  30. PCC_TERMCAP pTxTermCap,
  31. PCC_TERMCAP pRxTermCap,
  32. H245_MUX_T *pTxMuxTable,
  33. H245_MUX_T *pRxMuxTable,
  34. H245_ACCESS_T *pSeparateStack,
  35. DWORD_PTR dwUserToken,
  36. BYTE bChannelType,
  37. BYTE bSessionID,
  38. BYTE bAssociatedSessionID,
  39. WORD wRemoteChannelNumber,
  40. PCC_ADDR pLocalRTPAddr,
  41. PCC_ADDR pLocalRTCPAddr,
  42. PCC_ADDR pPeerRTPAddr,
  43. PCC_ADDR pPeerRTCPAddr,
  44. BOOL bLocallyOpened,
  45. PPCHANNEL ppChannel);
  46. HRESULT AddLocalAddrPairToChannel( PCC_ADDR pRTPAddr,
  47. PCC_ADDR pRTCPAddr,
  48. PCHANNEL pChannel);
  49. HRESULT AddSeparateStackToChannel( H245_ACCESS_T *pSeparateStack,
  50. PCHANNEL pChannel);
  51. HRESULT FreeChannel( PCHANNEL pChannel);
  52. HRESULT LockChannel( CC_HCHANNEL hChannel,
  53. PPCHANNEL ppChannel);
  54. HRESULT LockChannelAndConference( CC_HCHANNEL hChannel,
  55. PPCHANNEL ppChannel,
  56. PPCONFERENCE ppConference);
  57. HRESULT ValidateChannel( CC_HCHANNEL hChannel);
  58. HRESULT UnlockChannel( PCHANNEL pChannel);
  59.