Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Structures, prefix the name with the module name and a period.
BLUETOOTH_DEVICE_INFO (Structures)
.
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;
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