dbgint.h
来自「不错的东西 请查看 WINCE OS」· C头文件 代码 · 共 42 行
H
42 行
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// This source code is licensed under Microsoft Shared Source License
// Version 1.0 for Windows CE.
// For a copy of the license visit http://go.microsoft.com/fwlink/?LinkId=3223.
//
/***
*dbgint.h - Supports debugging features of the C runtime library.
*
*
*Purpose:
* Support CRT debugging features.
*
* [Internal]
*
****/
#ifndef _INC_DBGINT
#define _INC_DBGINT
#include <crtdbg.h>
#ifdef __cplusplus
extern "C" {
#endif
#define _malloc_crt malloc
#define _calloc_crt calloc
#define _realloc_crt realloc
#define _expand_crt _expand
#define _free_crt free
#define _msize_crt _msize
#ifdef __cplusplus
}
#endif
#endif /* _INC_DBGINT */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?