Partager via


BASEBAND_CONNECTION

This structure identifies information that is used in baseband connections.

typedef struct _BASEBAND_CONNECTION {
   USHORT hConnection;
   BT_ADDR baAddress;
   int cDataPacketsPending;
   UINT fLinkType : 1;
   UINT fEncrypted : 1;
   UINT fAuthenticated : 1;
   UINT fMode : 3;
} BASEBAND_CONNECTION, *PBASEBAND_CONNECTION;

Members

  • hConnection
    The connection handle.
  • baAddress
    The Bluetooth address.
  • cDataPacketsPending
    The number of pending packets for the connection.
  • fLinkType
    The type of link. Zero (0) indicates SCO, and 1 indicates ACL.
  • fEncrypted
    Encryption is enabled.
  • fAuthenticated
    Indicates whether the connection has been authenticated.
  • fMode
    The connection mode.

Requirements

OS Versions: Windows CE .NET 4.2 and later.
Header: Bt_api.h.

See Also

Bluetooth Structures

 Last updated on Thursday, April 08, 2004

© 1992-2003 Microsoft Corporation. All rights reserved.