2025-04-11 09:40:32 +08:00

19 lines
686 B
C

#ifndef __FEATURE_CALL_H__
#define __FEATURE_CALL_H__
#ifdef __cplusplus
extern "C" {
#endif
#include "app.h"
#include "feature.h"
int32_t callNumberInput_proc(AppInfoT *appInfo,AppMsgT *msg, uint32_t reserved2, uint32_t syscallTable);
int32_t callInCall_init(AppInfoT *appInfo, uint32_t reserved1, uint32_t reserved2, uint32_t syscallTable);
int32_t callInCall_proc(AppInfoT *appInfo,AppMsgT *msg, uint32_t reserved2, uint32_t syscallTable);
int32_t callInComing_proc(AppInfoT *appInfo,AppMsgT *msg, uint32_t reserved2, uint32_t syscallTable);
int32_t callDialout_proc(AppInfoT *appInfo,AppMsgT *msg, uint32_t reserved2, uint32_t syscallTable);
#ifdef __cplusplus
}
#endif
#endif