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

19 lines
590 B
C

#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