mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 11:14:58 -06:00
17 lines
209 B
C++
Executable File
17 lines
209 B
C++
Executable File
// 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
|