You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
1.1 KiB
70 lines
1.1 KiB
/**
|
|
* @defgroup common 公用函数
|
|
* @defgroup workflow 流程函数
|
|
* @defgroup bmf 业务扩展
|
|
* @defgroup service 服务函数
|
|
*/
|
|
|
|
/**
|
|
* @addtogroup common
|
|
* @{
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
* @brief 注册主函数
|
|
* @date 2014/4/21
|
|
* @author mengyawei
|
|
*/
|
|
|
|
#pragma warning (disable: 4819)
|
|
|
|
/**
|
|
* @headerfile tcua 头文件
|
|
*/
|
|
#include <tc/tc.h>
|
|
#include <tccore/custom.h>
|
|
#include <server_exits/user_server_exits.h>
|
|
#include "epm_register_handler.h"
|
|
#include "epm_handler_common.h"
|
|
#include "jd_clear_field.h"
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
/**
|
|
* @fn extern "C" DLLAPI int liborigin_register_callbacks
|
|
* @return usually return ITK_ok
|
|
* @brief liborigin customization entry
|
|
*/
|
|
DLLAPI int bs_register_callbacks()
|
|
{
|
|
int ifail = ITK_ok;
|
|
ifail = CUSTOM_register_exit(
|
|
"bs",
|
|
"USERSERVICE_register_methods",
|
|
(CUSTOM_EXIT_ftn_t)USERSERVICE_custom_register_methods) ;
|
|
|
|
|
|
ifail = CUSTOM_register_exit(
|
|
"bs",
|
|
"USER_gs_shell_init_module",
|
|
(CUSTOM_EXIT_ftn_t)CUST_init_module);
|
|
|
|
Register_revise_msg();
|
|
return ifail;
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/**
|
|
* @}
|
|
*/ |