Source code of Windows XP (NT5)
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.

34 lines
1.3 KiB

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1996.
  5. //
  6. // File: assert.hxx
  7. //
  8. // Contents: constant definitions for assert.cxx
  9. //
  10. // History: 19-Oct-92 HoiV Created.
  11. //
  12. // Notes: The reason for this file is that there is no assert.hxx for
  13. // assert.cxx. All the include files in assert.hxx are so crucial
  14. // to other projects that we don't want to make you recompile
  15. // the world to enable something you don't even need if you are
  16. // not using TOM. This way, only win40\common\misc will need to be
  17. // rebuilt.
  18. //
  19. //----------------------------------------------------------------------------
  20. #ifndef __ASSERT_HXX__
  21. #define __ASSERT_HXX__
  22. // The following two events are defined for CT TOM trapping of
  23. // assert popups. (Used in common\src\misc\assert.cxx)
  24. #define CAIRO_CT_TOM_TRAP_ASSERT_EVENT TEXT("CairoCTTOMTrapAssertEvent")
  25. #define CAIRO_CT_TOM_THREAD_START_EVENT TEXT("CairoCTTOMThreadStartEvent")
  26. // This is the timeout period waiting for TOM to respond to the
  27. // TrapAssertEvent. This is to allow the TOM Manager time to issue
  28. // a CallBack RPC to the dispatcher before the popup.
  29. #define TWO_MINUTES 120000
  30. #endif /* __ASSERT_HXX__ */