这是我在vc里的成功例子,除了下面的代码,其他没有任何变量声明。实现一个菜单调用一个函数。希望对你有所借鉴。对你的代码没有看的太清除。
static UF_MB_cb_status_t Load_Library(
UF_MB_widget_t widget,
UF_MB_data_t client_data,
UF_MB_activated_button_p_t call_button )
{
DisplayDialog();
return( UF_MB_CB_CONTINUE);
}
static UF_MB_action_t actionTable[]=
{
{"Load_Library",Load_Library,NULL},
{NULL,NULL,NULL}
};
extern void ufsta( char *param, int *returnCode, int rlen )//主函数
{
int errorCode = UF_initialize();
if ( 0 == errorCode )
{
UF_MB_add_actions(actionTable);
errorCode = UF_terminate();
}
} |