Linux compilation of dtbuilder (Matthew Howkins)

This commit is contained in:
Peter Howkins
2012-04-12 17:36:54 +01:00
parent 1d97f19166
commit 0859109ba0
18 changed files with 47 additions and 31 deletions

View File

@@ -2123,7 +2123,7 @@ static LibFuncRec abmfP_lrc_modal_dlgCB =
")\n"
"{\n"
" DTB_MODAL_ANSWER op = (DTB_MODAL_ANSWER) client_data;\n"
" DTB_MODAL_ANSWER *answerp = (DTB_MODAL_ANSWER) NULL;\n"
" DTB_MODAL_ANSWER *answerp = NULL;\n"
" \n"
" XtVaGetValues(widget, XmNuserData, &answerp, NULL);\n"
" \n"

View File

@@ -52,8 +52,8 @@
typedef struct
{
STRING name; /* name */
STRING proto; /* prototype */
STRING def; /* actual code */
char proto[512]; /* prototype */
char def[4096]; /* actual code */
} LibFuncRec, *LibFunc;