mirror of
https://github.com/HEYAHONG/HCppBox.git
synced 2025-05-09 00:21:37 +08:00
29 lines
561 B
C
29 lines
561 B
C
/***************************************************************
|
|
* Name: hmemory.h
|
|
* Purpose: 声明hmemory接口
|
|
* Author: HYH (hyhsystem.cn)
|
|
* Created: 2025-04-26
|
|
* Copyright: HYH (hyhsystem.cn)
|
|
* License: MIT
|
|
**************************************************************/
|
|
#ifndef __HMEMORY_H__
|
|
#define __HMEMORY_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif // __cplusplus
|
|
|
|
|
|
#include "hmemory/hmemoryheap.h"
|
|
#include "hmemory/hobject.h"
|
|
#include "hmemory/hringbuf.h"
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif // __cplusplus
|
|
|
|
|
|
#endif // __HMEMORY_H__
|