diff options
-rw-r--r-- | plugin/PProcess.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/plugin/PProcess.c b/plugin/PProcess.c index 788cfdc..fa75c1e 100644 --- a/plugin/PProcess.c +++ b/plugin/PProcess.c @@ -26,7 +26,7 @@ other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/programs/xrx/plugin/PProcess.c,v 1.6 2001/12/14 20:02:17 dawes Exp $ */ +/* $XFree86: xc/programs/xrx/plugin/PProcess.c,v 1.7 2003/12/22 17:48:13 tsi Exp $ */ #include "RxPlugin.h" #include "XUrls.h" @@ -114,6 +114,7 @@ IsInWinList(Window *list, int count, Window win) return False; } +#ifdef UNUSED static void AppendToWinList(Window **new_list, int *new_count, Window *list, int count, Window win) @@ -123,6 +124,7 @@ AppendToWinList(Window **new_list, int *new_count, memcpy(*new_list, list, sizeof(Window) * count); (*new_list)[count] = win; } +#endif static void PrependToWinList(Window **new_list, int *new_count, @@ -187,6 +189,7 @@ RemoveFromWinList(Window **wlist, int *count, Window win) list[0] = list[1]; } +#ifdef UNUSED static void ConcatWinLists(Window **list, int *count, Window *list1, int count1, @@ -218,6 +221,7 @@ SubstractWinLists(Window **wlist, int *count, for (; i < *count; i++, list++) list[0] = list[j]; } +#endif /*********************************************************************** * Add window to the WM_COLORMAP_WINDOWS property on the Netscape |