⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 usebormm.h

📁 希望我上传的这些东西可以对搞编程的程序员有点小小的帮助!谢谢!
💻 H
字号:
/*-----------------------------------------------------------------------*
 * filename - usebormm.h
 *
 *   Include this header file into one source file to force the RTL
 *   (either static or dynamic) to use the "Borland" memory manager DLL.
 *   The hooking and usage of the memory DLL is done inside the RTL when
 *   the memory DLL is detected to be in memory already.
 *
 *   This header will force the loader to load the DLL when the app starts
 *
 *-----------------------------------------------------------------------*/

/*
 *      C/C++ Run Time Library - Version 10.0
 *
 *      Copyright (c) 1998, 2000 by Inprise Corporation
 *      All Rights Reserved.
 *
 */

/* $Revision:   9.0  $        */

#ifndef __USEBORMM_H
#define __USEBORMM_H

#ifdef __cplusplus
extern "C" {
#endif

#pragma option push -V?- -w-use -w-aus

#pragma comment(lib, "usebormm.lib")  /* Bring in the helper lib */

static void __dummy_function_for_usebormm (void)
{
#   pragma startup __dummy_function_for_usebormm 64
    void _RTLENTRY __CRTL_MEM_PullInUseBorMMLib (void);

    __CRTL_MEM_PullInUseBorMMLib();
}

#pragma option pop

#ifdef __cplusplus
}
#endif


#endif /* __USEBORMM_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -