📄 dynmem.h
字号:
/************************************************** * * 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -