Sleep function kernel32

void Sleep(
  1. int dwMilliseconds
)

Suspends the execution of the current thread until the time-out interval elapses.

void Sleep(
  DWORD dwMilliseconds
);

Implementation

void Sleep(int dwMilliseconds) => _Sleep(dwMilliseconds);