Windows.Win32.Foundation.PWSTR
namespace Windows.Win32.Foundation
{
internal readonly struct PWSTR : IEquatable<PWSTR>
{
public bool IsNull { get; }
public string ToStringAndCoTaskMemFree();
public unsafe static implicit operator char*(PWSTR value);
public unsafe static implicit operator PWSTR(char* value);
public static bool operator ==(PWSTR left, PWSTR right);
public static bool operator !=(PWSTR left, PWSTR right);
public bool Equals(PWSTR other);
public static implicit operator PCWSTR(PWSTR value);
}
}