8
Come devo utilizzare correttamente FormatMessage () in C ++?
Senza : MFC ATL Come posso utilizzare FormatMessage()per ottenere il testo dell'errore per un 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); }