formatmessage

без: MFC ATL как я могу использовать FormatMessage() чтобы получить текст ошибки HRESULT? HRESULT hresult = application.CreateInstance("Excel.Application"); if (FAILED(hresult)) { // what should i put here to obtain a human-readable // description of the error? exit (hresult); } ...