handle.h 329 Bytes
Newer Older
PanZezhong's avatar
PanZezhong committed
1
2
#ifndef __INFINIOP_HANDLE_API_H__
#define __INFINIOP_HANDLE_API_H__
PanZezhongQY's avatar
PanZezhongQY committed
3
4
5

#include "../infinicore.h"

PanZezhong's avatar
PanZezhong committed
6
struct InfiniopHandle;
PanZezhongQY's avatar
PanZezhongQY committed
7
8
9

typedef InfiniopHandle *infiniopHandle_t;

10
__C __export infiniStatus_t infiniopCreateHandle(infiniopHandle_t *handle_ptr);
PanZezhongQY's avatar
PanZezhongQY committed
11

PanZezhong's avatar
PanZezhong committed
12
__C __export infiniStatus_t infiniopDestroyHandle(infiniopHandle_t handle);
PanZezhongQY's avatar
PanZezhongQY committed
13
14

#endif