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.

22 lines
722 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

#include "register_main.h"
#ifdef __cplusplus
extern "C" {
#endif
//此函数必须有规范的写法必须以dll的名称加上"_"开头
DLLAPI int connor_jd_register_callbacks()
{
int ifail = ITK_ok;
ITKCALL( ifail = CUSTOM_register_exit( "connor_jd", "USERSERVICE_register_methods", (CUSTOM_EXIT_ftn_t)K_register_methods) );
fprintf( stdout, "===================connor_jd registering USERSERVICE_custom_register_methods completed!\n" );
ITKCALL( ifail = CUSTOM_register_exit("connor_jd","USER_gs_shell_init_module", (CUSTOM_EXIT_ftn_t)ldy_register_handlers) );
fprintf( stdout, "===================connor_jd registering USERSERVICE_custom_register_handlers completed!\n" );
return ifail;
}
#ifdef __cplusplus
}
#endif