home *** CD-ROM | disk | FTP | other *** search
- // ▌≥ε≥ ⌠αΘδ Σδ Ωε∞∩Φδ ≥ε≡α BCC5.5
- #ifndef __SAFE_NEW_H__
- #define __SAFE_NEW_H__
-
- #include <stdlib.h> // ╟Σσ±ⁿ ε∩≡σΣσδσφ size_t
-
- //BCC5.5 ┬σΣσ≥ ±σß φσ ∩ε ±≥αφΣα≡≥≤, φσ τφα ε ∩α≡φ√⌡ new πδεßαδⁿφ√⌡ ε∩σ≡α≥ε≡α⌡ delete
- //MSVC6.0 ┬σΣσ≥ ±σß ∩ε ±≥αφΣα≡≥φ≤, ∩≡σΣ≤∩≡σµΣα εß Φ⌡ ε≥±≤≥±≥ΓΦΦ.
- //╧ε²≥ε∞≤ ∩≡Φ Ωε∞∩Φδ ÷ΦΦ BCC Φ⌡ Γ√ß≡α±√Γασ∞
-
- void * __cdecl operator new( size_t s, const char * file, int line );
-
- void * __cdecl operator new[]( size_t s, const char * file, int line );
-
- void * __cdecl operator new( size_t s );
- void __cdecl operator delete( void * p );
-
- void * __cdecl operator new[]( size_t s );
- void __cdecl operator delete[]( void * p );
-
- #define new new( __FILE__, __LINE__ )
-
- #endif //__SAFE_NEW_H__