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

📄 memory.h

📁 在高通的手机平台下,一个下载手机.bin文件到手机的flash中的工具,包含PC端的程序代码和运行在基带处理器中的代码.
💻 H
字号:
#ifndef MEMORY_H
#define MEMORY_H
/*==========================================================================

                         Standard Memory Header 
                         
DESCRIPTION
  The ARM compiler does not include a memory.h header, so we provide one
  here and point to the standard ARM include file which does have
  memory prototypes.

Copyright (c) 1997,1998 by QUALCOMM Incorporated.  All Rights Reserved.
Copyright (c) 1999      by QUALCOMM Incorporated.  All Rights Reserved.
===========================================================================*/

/*===========================================================================

                           EDIT HISTORY FOR FILE

$PVCSPath: O:/src/asw/COMMON/vcs/memory.h_v   1.1   29 Jan 2001 10:50:12   dyang  $
$Header: //depot/asic/msmshared/services/common/memory.h#2 $ $DateTime: 2001/01/29 10:46:10 $ $Author: dyang $
   
when       who     what, where, why
--------   ---     ----------------------------------------------------------
01/25/01   day     Merged from MSM5105_COMMON.00.00.05.
                     Modified to pull in string.h for NT builds.
11/03/98   jct     Added the else clause to include <memory.h> for non-ARM builds.
07/10/98   jct     Revised for coding standard, removed unused code
01/01/98   bwj     Created

===========================================================================*/

/*===========================================================================
 
                           INCLUDE FILES

===========================================================================*/

#ifdef TG
  #include "target.h"
#endif

#if defined(T_ARM) || defined(T_WINNT)
   /* --------------------------------------
   ** For the ARM Compiler, the prototypes
   ** which are typcially found in memory.h
   ** are instead in string.h
   ** -------------------------------------- */ 
   #include <string.h>

#endif

#endif /* END MEMORY_H */

⌨️ 快捷键说明

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