本人在compile从UG生成的DLG的.c文件时,遇到 missing ';' before 'type',但我没有改动过任何,为何编译有错? .h文件没有动过。
int SHRINK_back_cb ( int dialog_id,miss';'before 'type'在int 前
void * client_data,
UF_STYLER_item_value_type_p_t callback_data)
{
/* Make sure User Function is available. */
if ( UF_initialize() != 0)
return ( UF_UI_CB_CONTINUE_DIALOG );
/* ---- Enter your callback code here ----- */
UF_terminate ();
/* Callback acknowledged, terminate dialog. */
/* It is STRONGLY recommended that you exit your */
/* callback with UF_UI_CB_EXIT_DIALOG in a back call */
/* back rather than UF_UI_CB_CONTINUE_DIALOG. */
return (UF_UI_CB_EXIT_DIALOG);