CoEnableCallCancellation

[DllImport("ole32.dll", SetLastError = true)]
public static extern int CoEnableCallCancellation(
   IUnknown punk,
   uint dwTimeout,
   uint dwCancelTimeout
);

Microsoft documentation: Link

Last updated