19 lines
590 B
C
Raw Normal View History

2025-04-10 17:31:33 +08:00
#ifndef __FEATURE_SAFE_H__
#define __FEATURE_SAFE_H__
#ifdef __cplusplus
extern "C" {
#endif
#include "app.h"
#include "feature.h"
int32_t addBlackList_proc(AppInfoT *appInfo,AppMsgT *msg, uint32_t reserved2, uint32_t syscallTable);
int32_t deleteBlackList_proc(AppInfoT *appInfo,AppMsgT *msg, uint32_t reserved2, uint32_t syscallTable);
int32_t deleteAllBlackList_proc(AppInfoT *appInfo,AppMsgT *msg, uint32_t reserved2, uint32_t syscallTable);
int32_t editBlackList_proc(AppInfoT *appInfo,AppMsgT *msg, uint32_t reserved2, uint32_t syscallTable);
#ifdef __cplusplus
}
#endif
#endif