Windows.Win32.Foundation.PSTR
namespace Windows.Win32.Foundation
{
internal readonly struct PSTR : IEquatable<PSTR>
{
public unsafe static implicit operator byte*(PSTR value);
public unsafe static implicit operator PSTR(byte* value);
public static bool operator ==(PSTR left, PSTR right);
public static bool operator !=(PSTR left, PSTR right);
public bool Equals(PSTR other);
public static implicit operator PCSTR(PSTR value);
}
}