c++ - obtener un texto del código de error devuelto por la función GetLastError()
winapi error-handling (1)
Supongo que quieres algo como esto:
DWORD dwLastError = ::GetLastError();
TCHAR lpBuffer[256] = _T("?");
if(dwLastError != 0) // Don''t want to see a "operation done successfully" error ;-)
::FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, // It´s a system error
NULL, // No string to be formatted needed
dwLastError, // Hey Windows: Please explain this error!
MAKELANGID(LANG_NEUTRAL,SUBLANG_DEFAULT), // Do it in the standard language
lpBuffer, // Put the message here
STR_ELEMS(lpBuffer)-1, // Number of bytes to store the message
NULL);
También vea: http://msdn.microsoft.com/en-us/library/ms679351(VS.85).aspx
Necesito obtener el texto de un código de error que obtuve de la función GetLastError. Vi algunos ejemplos, pero quiero una función que obtenga el código y devuelva la cadena. Gracias a todos