mirror of https://github.com/tongzx/nt5src
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
40 lines
819 B
/*++
|
|
|
|
Copyright (c) 1998 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
portmgmt.h
|
|
|
|
Abstract:
|
|
|
|
Port pool management functions
|
|
|
|
Environment:
|
|
|
|
User Mode - Win32
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef _portmgmt_h_
|
|
#define _portmgmt_h_
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
// //
|
|
// Public prototypes //
|
|
// //
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
HRESULT PortPoolStart (void);
|
|
void PortPoolStop (void);
|
|
|
|
HRESULT PortPoolAllocRTPPort (
|
|
OUT WORD * ReturnPort);
|
|
|
|
HRESULT PortPoolFreeRTPPort (
|
|
IN WORD RtpPort);
|
|
|
|
#endif //_portmgmt_h_
|
|
|