?? memalloc.h
字號:
/*
*2006/08/16 WXL 2.0
* came from vendor sources with
*
*/
/*
V0.2 added PC-based binding 21/July/2006
V0.1 Initial Release 10/July/2006
*/
#ifndef _MEMALLOC_H_
#define _MEMALLOC_H_
void MemInit (void);
void MemDump(void);
UINT8 * MemAlloc (UINT16 size);
void MemFree(UINT8 *ptr);
#ifdef LRWPAN_COMPILER_NO_RECURSION
UINT8 * ISRMemAlloc (UINT16 size);
void ISRMemFree(UINT8 *ptr);
#else
#define ISRMemAlloc(x) MemAlloc(x)
#define ISRMemFree(x) MemFree(x)
#endif
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -