dynmem.h

来自「本程序为ST公司开发的源代码」· C头文件 代码 · 共 46 行

H
46
字号
/************************************************** * * dynmem.h * * CVS ID:   $Id: dynmem.h,v 1.4 2007/06/28 20:53:53 longauer Exp $ * Author:   Ondrej Trubac [OT] - STM * Date:     $Date: 2007/06/28 20:53:53 $ * Revision: $Revision: 1.4 $ *  * Description: *  *   Dynamic memory allocation. * *************************************************** *  * COPYRIGHT (C) ST Microelectronics  2005 *            All Rights Reserved * *************************************************** * * STM CVS Log: * * $Log: dynmem.h,v $ * Revision 1.4  2007/06/28 20:53:53  longauer * 1.Usb restructuralization in order to supports more LUNs and interface preparation *  for iAP; 2.PHY emulation moved; 3.compilation works with IPOD_PASSTHROUGH==0; 4. *  usb patching init moved from main.c * * Revision 1.3  2007/02/09 12:14:36  belardi * First integration of iPod pass-through * * ***************************************************/#ifndef DYNMEM_H#define DYNMEM_H#include "apdevsys.h"#define MY_HEAP_SIZE 6*1024 //20*1024void DYN_Init(void);void* DYN_malloc(unsigned short size);GRESULT DYN_free(void *mem);#endif

⌨️ 快捷键说明

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