Files
entropy/pylzma/7zip/Common/NewHandler.h
2009-04-02 13:45:25 +02:00

17 lines
213 B
C++

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