"tests/test_classh_wip.py" did not exist on "1c6910f2ea0016bcbf5e418a90f0865e65daf879"
handle.h 336 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
__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