public static bool IsTargetUnwind(this EXCEPTION_FLAGS Flag) => WinNTFunctions.IS_TARGET_UNWIND((int)Flag);
public static bool IsUnwinding(this EXCEPTION_FLAGS Flag) => WinNTFunctions.IS_UNWINDING((int)Flag);
public static bool IsDispatching(this EXCEPTION_FLAGS Flag) => WinNTFunctions.IS_DISPATCHING((int)Flag);
/// <summary> /// Determines if the provided virtual disk handle state, from <see cref="SHARED_VIRTUAL_DISK_SUPPORT"/>, /// indicates that the target virtual disk file is opened in shared mode. /// </summary> public static bool IsVirtualDiskFileShared(this SharedVirtualDiskHandleState HandleState) => WinNTFunctions.IsVirtualDiskFileShared(HandleState);