DeleteTimerQueue

[DllImport("kernel32.dll", SetLastError = true)] [return: MarshalAs(UnmanagedType.Bool)]
public static extern bool DeleteTimerQueue(
   IntPtr TimerQueue
);

Microsoft documentation: Link

Last updated