WaitForSingleObject

[DllImport("coredll.dll", SetLastError = true)]
public static extern uint WaitForSingleObject(
   IntPtr hHandle,
   uint dwMilliseconds
);

Microsoft documentation: Link

Last updated