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.

16 lines
261 B

  1. #include "precomp.h"
  2. #include <dothrow.h>
  3. const CX_MemoryException wmibad_alloc;
  4. void dothrow_t::raise_bad_alloc()
  5. {
  6. throw wmibad_alloc;
  7. }
  8. void dothrow_t::raise_lock_failure()
  9. {
  10. throw wmibad_alloc;
  11. }
  12. const dothrow_t dothrow;
  13. const wminothrow_t wminothrow;