Source code of Windows XP (NT5)
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.

40 lines
819 B

  1. /*++
  2. Copyright (c) 1998 Microsoft Corporation
  3. Module Name:
  4. portmgmt.h
  5. Abstract:
  6. Port pool management functions
  7. Environment:
  8. User Mode - Win32
  9. Revision History:
  10. --*/
  11. #ifndef _portmgmt_h_
  12. #define _portmgmt_h_
  13. ///////////////////////////////////////////////////////////////////////////////
  14. // //
  15. // Public prototypes //
  16. // //
  17. ///////////////////////////////////////////////////////////////////////////////
  18. HRESULT PortPoolStart (void);
  19. void PortPoolStop (void);
  20. HRESULT PortPoolAllocRTPPort (
  21. OUT WORD * ReturnPort);
  22. HRESULT PortPoolFreeRTPPort (
  23. IN WORD RtpPort);
  24. #endif //_portmgmt_h_