_com_issue_error 备忘

It throws a _com_error object. 
Further, you can catch it as follows: 

   try
   {
      // ... 
   }
   catch(_com_error& e)
   {
      // ...
   }

inline void TESTHR(HRESULT x) { if FAILED(x) _com_issue_error(x); };

转载于:https://www.cnblogs.com/huangyong9527/archive/2012/06/05/2537022.html

你可能感兴趣的:(_com_issue_error 备忘)