2 instantiations of BOOL
Microsoft.VisualStudio.Extensibility.Testing.Xunit (2)
Windows.Win32.BOOL.g.cs (2)
32 public static explicit operator BOOL(int value) => new BOOL(value); 50 public static implicit operator BOOL(bool value) => new BOOL(value);
22 references to BOOL
Microsoft.VisualStudio.Extensibility.Testing.Xunit (22)
Windows.Win32.BOOL.g.cs (11)
24 : IEquatable<BOOL> 30 public static implicit operator int(BOOL value) => value.Value; 32 public static explicit operator BOOL(int value) => new BOOL(value); 34 public static bool operator ==(BOOL left, BOOL right) => left.Value == right.Value; 36 public static bool operator !=(BOOL left, BOOL right) => !(left == right); 38 public bool Equals(BOOL other) => this.Value == other.Value; 40 public override bool Equals(object obj) => obj is BOOL other && this.Equals(other); 48 public static implicit operator bool(BOOL value) => value.Value != 0; 50 public static implicit operator BOOL(bool value) => new BOOL(value);
Windows.Win32.IMoniker.g.cs (3)
32 new void Save(winmdroot.System.Com.IStream pStm, winmdroot.Foundation.BOOL fClearDirty); 100 void ComposeWith(winmdroot.System.Com.IMoniker pmkRight, winmdroot.Foundation.BOOL fOnlyIfNotGeneric, out winmdroot.System.Com.IMoniker ppmkComposite); 111 void Enum(winmdroot.Foundation.BOOL fForward, out winmdroot.System.Com.IEnumMoniker ppenumMoniker);
Windows.Win32.IPersistStream.g.cs (1)
61 void Save(winmdroot.System.Com.IStream pStm, winmdroot.Foundation.BOOL fClearDirty);
Windows.Win32.PInvoke.KERNEL32.dll.g.cs (3)
37 internal static extern winmdroot.Foundation.BOOL AllocConsole(); 50 internal static extern winmdroot.Foundation.BOOL FreeConsole(); 64 internal static extern winmdroot.Foundation.BOOL CloseHandle(winmdroot.Foundation.HANDLE hObject);
Windows.Win32.PInvoke.USER32.dll.g.cs (4)
55 internal static extern winmdroot.Foundation.BOOL IsWindowVisible(winmdroot.Foundation.HWND hWnd); 71 internal static extern winmdroot.Foundation.BOOL SetForegroundWindow(winmdroot.Foundation.HWND hWnd); 106 internal static extern winmdroot.Foundation.BOOL SetWindowPos(winmdroot.Foundation.HWND hWnd, winmdroot.Foundation.HWND hWndInsertAfter, int X, int Y, int cx, int cy, winmdroot.UI.WindowsAndMessaging.SET_WINDOW_POS_FLAGS uFlags); 123 internal static extern void SwitchToThisWindow(winmdroot.Foundation.HWND hwnd, winmdroot.Foundation.BOOL fUnknown);