err.h 738 B

12345678910111213141516171819202122
  1. //===========================================================================//
  2. // Copyright (C) Microsoft Corporation. All rights reserved. //
  3. //===========================================================================//
  4. //***************************************************************************
  5. //
  6. // ERR.H
  7. //
  8. //***************************************************************************
  9. #ifndef ERR_H
  10. #define ERR_H
  11. //***************************************************************************
  12. void Fatal (long errCode, char* errMessage);
  13. void Assert (bool test, long errCode, char* errMessage);
  14. //***************************************************************************
  15. #endif