Group: System Shutdown - Library: user32
BOOL ExitWindows(
DWORD dwReserved, // reserved
UINT uReserved // reserved
);
DECLARE INTEGER ExitWindows IN user32;
INTEGER dwReserved,;
INTEGER uReserved
dwReserved Reserved; must be zero.
uReserved Reserved; must be zero
If the function succeeds, the return value is TRUE
Windows Me: using this function causes an error: entry point not found; it looks like this function is not implemented or it has an alias different from "ExitWindow".
Most evidently ExitWindows call is completely equivalent to
ExitWindowsEx (EWX_LOGOFF, 0)