?? new.h
字號:
/* new.h
Access to operator new() and newhandler()
Copyright (c) 1990, 1991 by Borland International
All Rights Reserved.
*/
#if !defined( __NEW_H )
#define __NEW_H
#if !defined( __DEFS_H )
#include <_defs.h>
#endif
#ifndef __cplusplus
#error Must use C++ with new.h
#endif
typedef void (* pvf)();
extern void (* _Cdecl _new_handler)();
void (* set_new_handler( void (* )() ))();
void * operator new( unsigned );
#endif /* __NEW_H */
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -