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.
 
 
 
 
 
 

54 lines
783 B

/*++
Copyright (c) 1997-1999 Microsoft Corporation
Module Name:
Abstract:
Author:
mquinton - 4/17/97
Notes:
optional-notes
Revision History:
--*/
#include "stdafx.h"
#include "uuids.h"
BOOL
IsAudioInTerminal( ITTerminal * pTerminal)
{
long lMediaType;
TERMINAL_DIRECTION td;
pTerminal->get_MediaType(
&lMediaType
);
pTerminal->get_Direction( &td );
//
// it it's audio in, use
// the compound terminal
//
if ( ( LINEMEDIAMODE_AUTOMATEDVOICE == (DWORD)lMediaType ) &&
( TD_RENDER == td ) )
{
return TRUE;
}
else
{
return FALSE;
}
}