Fix WINCHAIN compilation
This commit is contained in:
+1
-1
@@ -359,7 +359,7 @@ struct chain_procs {
|
|||||||
void FDECL((*win_status_finish), (CARGS));
|
void FDECL((*win_status_finish), (CARGS));
|
||||||
void FDECL((*win_status_enablefield),
|
void FDECL((*win_status_enablefield),
|
||||||
(CARGS, int, const char *, const char *, BOOLEAN_P));
|
(CARGS, int, const char *, const char *, BOOLEAN_P));
|
||||||
void FDECL((*win_status_update), (CARGS, int, genericptr_t, int, int, int, unsigned long));
|
void FDECL((*win_status_update), (CARGS, int, genericptr_t, int, int, int, unsigned long *));
|
||||||
boolean FDECL((*win_can_suspend), (CARGS));
|
boolean FDECL((*win_can_suspend), (CARGS));
|
||||||
};
|
};
|
||||||
#endif /* WINCHAIN */
|
#endif /* WINCHAIN */
|
||||||
|
|||||||
@@ -620,7 +620,7 @@ boolean enable;
|
|||||||
void
|
void
|
||||||
chainout_status_update(vp, idx, ptr, chg, percent, color, colormasks)
|
chainout_status_update(vp, idx, ptr, chg, percent, color, colormasks)
|
||||||
void *vp;
|
void *vp;
|
||||||
int idx, chg, percent;
|
int idx, chg, percent, color;
|
||||||
genericptr_t ptr;
|
genericptr_t ptr;
|
||||||
unsigned long *colormasks;
|
unsigned long *colormasks;
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1083,9 +1083,9 @@ boolean enable;
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
trace_status_update(vp, idx, ptr, chg, color, colormasks)
|
trace_status_update(vp, idx, ptr, chg, percent, color, colormasks)
|
||||||
void *vp;
|
void *vp;
|
||||||
int idx, chg, percent;
|
int idx, chg, percent, color;
|
||||||
genericptr_t ptr;
|
genericptr_t ptr;
|
||||||
unsigned long *colormasks;
|
unsigned long *colormasks;
|
||||||
{
|
{
|
||||||
@@ -1095,7 +1095,7 @@ unsigned long *colormasks;
|
|||||||
ptr, chg, percent);
|
ptr, chg, percent);
|
||||||
|
|
||||||
PRE;
|
PRE;
|
||||||
(*tdp->nprocs->win_status_update)(tdp->ndata, idx, ptr, chg, color colormasks);
|
(*tdp->nprocs->win_status_update)(tdp->ndata, idx, ptr, chg, percent, color, colormasks);
|
||||||
POST;
|
POST;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user