Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 40 of file logoff.c.
Referenced by _tmain(), and EnableShutdownPrivileges().
{ int errorCode = GetLastError(); LPTSTR lpMsgBuf; // Display the error message to the user FormatMessage( FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM, NULL, errorCode, LANG_USER_DEFAULT, (LPTSTR) &lpMsgBuf, 0, NULL); _ftprintf(stderr, lpMsgBuf); _ftprintf(stderr, _T("Error code: %d\n"), errorCode); LocalFree(lpMsgBuf); }