|
From: Andre R. <and...@us...> - 2004-11-01 11:50:53
|
Update of /cvsroot/frontierkernel/Frontier/Common/headers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1251 Modified Files: op.h shell.h shellprint.h Log Message: Fixed GCC compiler warnings. Index: shell.h =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/headers/shell.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** shell.h 24 Oct 2004 19:38:40 -0000 1.2 --- shell.h 1 Nov 2004 11:50:42 -0000 1.3 *************** *** 722,732 **** //Code change by Timothy Paustian Saturday, July 22, 2000 9:56:19 PM //two new routines to allow initialization and destruction of the scroll UPPs ! extern void shellinitscroll(); ! extern void shellshutdownscroll(); ! extern void fileinit(); ! extern void fileshutdown(); #ifdef WIN95VERSION --- 722,732 ---- //Code change by Timothy Paustian Saturday, July 22, 2000 9:56:19 PM //two new routines to allow initialization and destruction of the scroll UPPs ! extern void shellinitscroll(void); ! extern void shellshutdownscroll(void); ! extern void fileinit(void); ! extern void fileshutdown(void); #ifdef WIN95VERSION Index: shellprint.h =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/headers/shellprint.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** shellprint.h 24 Oct 2004 16:58:11 -0000 1.2 --- shellprint.h 1 Nov 2004 11:50:42 -0000 1.3 *************** *** 76,82 **** extern boolean shellprint (WindowPtr, boolean); ! extern boolean iscurrentportprintport (); ! extern boolean isprintingactive (); extern boolean getprintscale (long * scaleMult, long * scaleDiv); \ No newline at end of file --- 76,82 ---- extern boolean shellprint (WindowPtr, boolean); ! extern boolean iscurrentportprintport (void); ! extern boolean isprintingactive (void); extern boolean getprintscale (long * scaleMult, long * scaleDiv); \ No newline at end of file Index: op.h =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/headers/op.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** op.h 9 Oct 2004 21:01:28 -0000 1.1 --- op.h 1 Nov 2004 11:50:42 -0000 1.2 *************** *** 64,67 **** --- 64,70 ---- #define cthoists 5 /*depth of hoist stack*/ + typedef struct tyoutlinerecord *ptroutlinerecord, **hdloutlinerecord; /*forward declaration*/ + + typedef struct tyheadrecord *ptrheadrecord, **hdlheadrecord;/*forward declaration*/ typedef struct tyheadrecord { *************** *** 112,116 **** Handle headstring; /*text of headline lives in its own block*/ ! } tyheadrecord, *ptrheadrecord, **hdlheadrecord; --- 115,119 ---- Handle headstring; /*text of headline lives in its own block*/ ! } tyheadrecord; *************** *** 178,184 **** typedef boolean (*opgefullrectcallback) (hdlheadrecord, Rect *); ! typedef boolean (*opsetscrapcallback) (struct tyoutlinerecord **); ! typedef boolean (*opgetscrapcallback) (struct tyoutlinerecord ** *, boolean *); typedef boolean (*optextchangedcallback) (hdlheadrecord, bigstring); --- 181,187 ---- typedef boolean (*opgefullrectcallback) (hdlheadrecord, Rect *); ! typedef boolean (*opsetscrapcallback) (hdloutlinerecord); ! typedef boolean (*opgetscrapcallback) (hdloutlinerecord *, boolean *); typedef boolean (*optextchangedcallback) (hdlheadrecord, bigstring); *************** *** 202,206 **** typedef boolean (*opsetwindowhandlecontextcallback) (Handle); ! typedef boolean (*optexttooutlinecallback) (struct tyoutlinerecord **, Handle, hdlheadrecord *); --- 205,209 ---- typedef boolean (*opsetwindowhandlecontextcallback) (Handle); ! typedef boolean (*optexttooutlinecallback) (hdloutlinerecord, Handle, hdlheadrecord *); *************** *** 444,448 **** long outlinerefcon; /*for use by application*/ ! } tyoutlinerecord, *ptroutlinerecord, **hdloutlinerecord; --- 447,451 ---- long outlinerefcon; /*for use by application*/ ! } tyoutlinerecord; |