plxappmem.h
来自「mtk wap和mms代码。。适应mtk 25。26平台」· C头文件 代码 · 共 29 行
H
29 行
/***************************************************************************
*
* Pollex Mobile Platform
*
* Copyright (c) 2004 by Pollex Mobile Software Co., Ltd.
* All Rights Reserved
*
* Module :
*
* Purpose :
*
\**************************************************************************/
#ifndef _POLLEX_APP_MEMORY_HEADER_
#define _POLLEX_APP_MEMORY_HEADER_
#define PlxAppMalloc plx_malloc
#define PlxAppFree plx_free
#define PlxAppRealloc plx_realloc
#define PlxAppMemcpy plx_memcpy
typedef unsigned int size_t;
void * plx_malloc(size_t size);
void plx_free(void *memblock);
void * plx_realloc(void *memblock, size_t size);
extern void * plx_memcpy(void *dst0, const void *src0, unsigned int len0);
#endif //_POLLEX_APP_MEMORY_HEADER_
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?