memory.h

来自「在高通的手机平台下,一个下载手机.bin文件到手机的flash中的工具,包含PC」· C头文件 代码 · 共 54 行

H
54
字号
#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 + =
减小字号Ctrl + -
显示快捷键?