Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 292 of file tftpd.cpp.
Referenced by installService(), main(), and uninstallService().
{ DWORD dw = GetLastError(); if (dw) { LPVOID lpMsgBuf; FormatMessage( FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, NULL, dw, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), (LPTSTR) &lpMsgBuf, 0, NULL ); _tprintf(_T("Error: %s\nPress Enter..\n"), (LPTSTR)lpMsgBuf); getchar(); if(lpMsgBuf) LocalFree(lpMsgBuf); } }