添加 check 99 rule handler

main
zouxk 5 years ago
parent 4be5ef110a
commit 4688dcce4a

@ -49,6 +49,7 @@ int bs_bypass(void *retValType);
int jd_schedule_joint(EPM_action_message_t msg); int jd_schedule_joint(EPM_action_message_t msg);
int jd_batch_process(EPM_action_message_t msg); int jd_batch_process(EPM_action_message_t msg);
int jd_add_attachments(EPM_action_message_t msg); int jd_add_attachments(EPM_action_message_t msg);
int jd_check_99_bomyt(EPM_rule_message_t msg);
////<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣǩ<CFA2><C7A9><EFBFBD><E6B1BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȥ ////<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣǩ<CFA2><C7A9><EFBFBD><E6B1BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȥ
//int qtmc_sign_ir(EPM_action_message_t msg); //int qtmc_sign_ir(EPM_action_message_t msg);

@ -159,6 +159,13 @@ extern DLLAPI int CUST_init_module(int *decision, va_list args)
printf("register jd_add_attachments failed\n"); printf("register jd_add_attachments failed\n");
} else { } else {
printf("register jd_add_attachments successfully\n"); printf("register jd_add_attachments successfully\n");
}
ifail = EPM_register_rule_handler("jd_check_99_bomyt", "jd_check_99_bomyt",
(EPM_rule_handler_t)jd_check_99_bomyt);
if (ifail) {
printf("register jd_check_99_bomyt failed\n");
} else {
printf("register jd_check_99_bomyt successfully\n");
} }
//if(ifail == ITK_ok) //if(ifail == ITK_ok)

Loading…
Cancel
Save