Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
303 B

  1. inline void CHECK_SUCCESS(HRESULT hr)
  2. {
  3. if (hr != S_OK)
  4. {
  5. wprintf(L"operation failed with HRESULT=%08x\n", hr);
  6. DebugBreak();
  7. }
  8. }
  9. inline void CHECK_NOFAIL(HRESULT hr)
  10. {
  11. if (FAILED(hr))
  12. {
  13. wprintf(L"operation failed with HRESULT=%08x\n", hr);
  14. DebugBreak();
  15. }
  16. }