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.
35 lines
420 B
35 lines
420 B
/*++
|
|
|
|
Copyright (c) 1996 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
callid.hxx
|
|
|
|
Abstract:
|
|
|
|
Implements a cache of callids used for running down OIDs
|
|
|
|
Author:
|
|
|
|
Mario Goertzel [MarioGo]
|
|
|
|
Revision History:
|
|
|
|
MarioGo 1/18/1996 Bits 'n pieces
|
|
|
|
--*/
|
|
|
|
#ifndef __CALLID_HXX
|
|
#define __CALLID_HXX
|
|
|
|
INT AllocateCallId(
|
|
OUT UUID &Callid
|
|
);
|
|
|
|
void FreeCallId(
|
|
IN INT hint
|
|
);
|
|
|
|
#endif // __CALLID_HXX
|
|
|