7 instantiations of PCSTR
Microsoft.Private.Windows.Core (7)
_generated\186\Windows.Win32.PCSTR.g.cs (1)
39
public static explicit operator PCSTR(byte* value) => new
PCSTR
(value);
_generated\196\Windows.Win32.PInvokeCore.KERNEL32.dll.g.cs (3)
191
int __result = PInvokeCore.MultiByteToWideChar(CodePage, dwFlags, new winmdroot.Foundation.
PCSTR
(lpMultiByteStrLocal), cbMultiByte, lpWideCharStrLocal, lpWideCharStr.Length);
235
int __result = PInvokeCore.WideCharToMultiByte(CodePage, dwFlags, lpWideCharStrLocal, cchWideChar, lpMultiByteStr, cbMultiByte, new winmdroot.Foundation.
PCSTR
(lpDefaultCharLocal), lpUsedDefaultCharLocal);
250
int __result = PInvokeCore.WideCharToMultiByte(CodePage, dwFlags, lpWideCharStrLocal, cchWideChar, lpMultiByteStr, cbMultiByte, new winmdroot.Foundation.
PCSTR
(lpDefaultCharLocal), default(winmdroot.Foundation.BOOL* ));
_generated\205\Windows.Win32.PSTR.g.cs (3)
51
public override string ToString() => new
PCSTR
(this.Value).ToString();
53
public static implicit operator PCSTR(PSTR value) => new
PCSTR
(value.Value);
57
internal int Length => new
PCSTR
(this.Value).Length;
13 references to PCSTR
Microsoft.Private.Windows.Core (13)
_generated\186\Windows.Win32.PCSTR.g.cs (5)
28
: IEquatable<
PCSTR
>
37
public static implicit operator byte*(
PCSTR
value) => value.Value;
39
public static explicit operator
PCSTR
(byte* value) => new PCSTR(value);
41
public bool Equals(
PCSTR
other) => this.Value == other.Value;
43
public override bool Equals(object obj) => obj is
PCSTR
other && this.Equals(other);
_generated\196\Windows.Win32.PInvokeCore.KERNEL32.dll.g.cs (5)
183
/// <inheritdoc cref="MultiByteToWideChar(uint, winmdroot.Globalization.MULTI_BYTE_TO_WIDE_CHAR_FLAGS, winmdroot.Foundation.
PCSTR
, int, winmdroot.Foundation.PWSTR, int)"/>
222
internal static extern int MultiByteToWideChar(uint CodePage, winmdroot.Globalization.MULTI_BYTE_TO_WIDE_CHAR_FLAGS dwFlags, winmdroot.Foundation.
PCSTR
lpMultiByteStr, int cbMultiByte, [Optional] winmdroot.Foundation.PWSTR lpWideCharStr, int cchWideChar);
224
/// <inheritdoc cref="WideCharToMultiByte(uint, uint, winmdroot.Foundation.PCWSTR, int, winmdroot.Foundation.PSTR, int, winmdroot.Foundation.
PCSTR
, winmdroot.Foundation.BOOL*)"/>
242
/// <inheritdoc cref="WideCharToMultiByte(uint, uint, winmdroot.Foundation.PCWSTR, int, winmdroot.Foundation.PSTR, int, winmdroot.Foundation.
PCSTR
, winmdroot.Foundation.BOOL*)"/>
289
internal static extern unsafe int WideCharToMultiByte(uint CodePage, uint dwFlags, winmdroot.Foundation.PCWSTR lpWideCharStr, int cchWideChar, [Optional] winmdroot.Foundation.PSTR lpMultiByteStr, int cbMultiByte, [Optional] winmdroot.Foundation.
PCSTR
lpDefaultChar, [Optional] winmdroot.Foundation.BOOL* lpUsedDefaultChar);
_generated\205\Windows.Win32.PSTR.g.cs (3)
50
/// <inheritdoc cref="
PCSTR
.ToString()"/>
53
public static implicit operator
PCSTR
(PSTR value) => new PCSTR(value.Value);
56
/// <inheritdoc cref="
PCSTR
.Length"/>