michael@0: // Common/NewHandler.h michael@0: michael@0: #ifndef __COMMON_NEWHANDLER_H michael@0: #define __COMMON_NEWHANDLER_H michael@0: michael@0: class CNewException {}; michael@0: michael@0: #ifdef _WIN32 michael@0: void michael@0: #ifdef _MSC_VER michael@0: __cdecl michael@0: #endif michael@0: operator delete(void *p) throw(); michael@0: #endif michael@0: michael@0: #endif