BLUETOOTH_DEVICE_INFO (Structures)
Last changed: -130.225.51.45

.
Summary
TODO - a short description

C# Definition:

[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
public struct BluetoothDeviceInfo
    {
        public UInt32 dwSize;
        public UInt64 Address;
        public uint ulClassofDevice;
        public bool fConnected;
        public bool fRemembered;
        public bool fAuthenticated;
        public SYSTEMTIME stLastSeen;
        public SYSTEMTIME stLastUsed;
        [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 248)]
        public string szName;

        public void Initialize()
        {
        this.dwSize = (uint)Marshal.SizeOf(typeof(BluetoothDeviceInfo));
        }
     }

VB Definition:

Structure BLUETOOTH_DEVICE_INFO
   Public TODO
End Structure

User-Defined Field Types:

SYSTEMTIME

Notes:

None.

Documentation