ss928_framework/ss928sdk/include/ot_ao_export.h

24 lines
487 B
C
Raw Permalink Normal View History

2024-12-16 13:31:45 +08:00
/*
Copyright (c), 2001-2022, Shenshu Tech. Co., Ltd.
*/
#ifndef OT_AO_EXPORT_H
#define OT_AO_EXPORT_H
#include "ot_common.h"
typedef struct {
void (*ao_notify) (int ao_dev);
} ot_ao_export_callback;
typedef td_s32 ot_ao_register_export_callback(ot_ao_export_callback *export_callback);
typedef struct {
ot_ao_register_export_callback *register_export_callback;
} ot_ao_export_symbol;
ot_ao_export_symbol *ot_ao_get_export_symbol(td_void);
#endif /* OT_AO_EXPORT_H */