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
17 lines
287 B
#include "std.hxx"
|
|
|
|
void __cdecl StructuredExceptionHandler(unsigned int u, EXCEPTION_POINTERS* pExp)
|
|
{
|
|
throw CStructuredExcept(
|
|
u, pExp);
|
|
}
|
|
|
|
|
|
int __cdecl MemoryExceptionHandler(size_t size)
|
|
{
|
|
throw CMemoryExcept(
|
|
(DWORD)size);
|
|
return 0;
|
|
}
|
|
|
|
|