You need to sign in or sign up before continuing.
handle.h 350 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
typedef struct InfiniopHandle *infiniopHandle_t;
PanZezhongQY's avatar
PanZezhongQY committed
9

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

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

#endif