soui
5.0.0.1
Soui5 Doc
Loading...
Searching...
No Matches
soui_mem_wrapper.h
1
/********************************************************************
2
created: 2014/10/30
3
created: 30:10:2014 10:24
4
filename: soui_mem_wrapper.h
5
author: soui group
6
7
purpose: 包装内存动态分配
8
*********************************************************************/
9
#ifndef __SOUI_MEM_WRAPPER__H__
10
#define __SOUI_MEM_WRAPPER__H__
11
#include "utilities-def.h"
12
13
namespace
SOUI
14
{
15
class
UTILITIES_API soui_mem_wrapper
16
{
17
public
:
18
static
void
* SouiMalloc(
size_t
szMem);
19
static
void
* SouiRealloc(
void
*p,
size_t
szMem);
20
static
void
* SouiCalloc(
size_t
count,
size_t
szEle);
21
static
void
SouiFree(
void
*p);
22
};
23
}
24
25
#endif
// __SOUI_MEM_WRAPPER__H__
utilities
include
soui_mem_wrapper.h
Generated by
1.13.2