ExitProcess function kernel32

void ExitProcess(
  1. int uExitCode
)

Ends the calling process and all its threads.

void ExitProcess(
  UINT uExitCode
);

Implementation

void ExitProcess(int uExitCode) => _ExitProcess(uExitCode);