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.

17 lines
287 B

  1. #include "std.hxx"
  2. void __cdecl StructuredExceptionHandler(unsigned int u, EXCEPTION_POINTERS* pExp)
  3. {
  4. throw CStructuredExcept(
  5. u, pExp);
  6. }
  7. int __cdecl MemoryExceptionHandler(size_t size)
  8. {
  9. throw CMemoryExcept(
  10. (DWORD)size);
  11. return 0;
  12. }