TR_IS_NOT_DIRECTED (Windows CE 5.0)

Send Feedback

This macro sets a caller-supplied variable to a Boolean value indicating whether a given Token Ring address is neither a functional nor a group address.

VOID TR_IS_NOT_DIRECTED(PUCHAR_Address,PBOOLEAN_Result);

Parameters

  • _Address
    Points to a network address.
  • _Result
    Points to a caller-supplied variable in which this macro returns TRUE if the address is not directed.

Return Values

None.

Remarks

The TR_IS_NOT_DIRECTED macro is defined as follows.

#define TR_IS_NOT_DIRECTED(_Address, _Result)                            \
{                                                                        \
    *(_Result) = (BOOLEAN)((_Address)[0] & 0x80);                        \
}

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: Ndis.h.

See Also

TR_IS_BROADCAST | TR_IS_FUNCTIONAL | TR_IS_GROUP | TR_IS_SOURCE_ROUTING

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.