24 lines
487 B
C
Executable File
24 lines
487 B
C
Executable File
/*
|
|
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 */
|
|
|