JZsdk_MemoryAdapter.h 1.0 KB
/**
 ********************************************************************
 * @file   JZsdk_MemoryAdapter.h
 *          用于内存管理
 *
 *********************************************************************
 */

/* Define to prevent recursive inclusion 避免重定义 -------------------------------------*/
#ifndef JZSDK_MEMORY_ADAPTER_H
#define JZSDK_MEMORY_ADAPTER_H

/* Includes ------------------------------------------------------------------*/
#include "../JZsdk_Code/JZsdk_Code.h"

#ifdef __cplusplus
extern "C" {
#endif

/* Exported constants --------------------------------------------------------*/
/* 常亮定义*/

/* Exported types ------------------------------------------------------------*/


/* Exported functions --------------------------------------------------------*/
T_JZsdkReturnCode JZsdk_Malloc(void **ptr, unsigned int size);  
T_JZsdkReturnCode JZsdk_Free(void *ptr);

#ifdef __cplusplus
}
#endif

#endif 
/************************ (C) COPYRIGHT DJI Innovations *******END OF FILE******/