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