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.

31 lines
1.3 KiB

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