Hi,
attached patch includes the header files with the corresponding
prototypes in the implementing c files in libs/
Regards,
Stefan
Index: libs/ColorUtils.c
===================================================================
RCS file: /home/cvs/fvwm/fvwm/libs/ColorUtils.c,v
retrieving revision 1.33
diff -u -u -r1.33 ColorUtils.c
--- libs/ColorUtils.c 27 Jan 2007 11:33:16 -0000 1.33
+++ libs/ColorUtils.c 27 May 2007 16:57:45 -0000
@@ -40,6 +40,7 @@
#include "Colorset.h"
#include "PictureBase.h"
#include "PictureUtils.h"
+#include "ColorUtils.h"
#define PCT_BRIGHTNESS (6 * 0xffff / 100)
Index: libs/Cursor.c
===================================================================
RCS file: /home/cvs/fvwm/fvwm/libs/Cursor.c,v
retrieving revision 1.4
diff -u -u -r1.4 Cursor.c
--- libs/Cursor.c 29 Jun 2003 19:53:24 -0000 1.4
+++ libs/Cursor.c 27 May 2007 16:57:45 -0000
@@ -26,6 +26,7 @@
#include <stdio.h>
#include "fvwmlib.h"
#include <X11/cursorfont.h>
+#include "Cursor.h"
/*
* fvwmCursorNameToIndex: return the number of a X11 cursor from its
Index: libs/Event.c
===================================================================
RCS file: /home/cvs/fvwm/fvwm/libs/Event.c,v
retrieving revision 1.7
diff -u -u -r1.7 Event.c
--- libs/Event.c 11 Apr 2005 12:04:57 -0000 1.7
+++ libs/Event.c 27 May 2007 16:57:45 -0000
@@ -19,6 +19,7 @@
#include <X11/Xlib.h>
#include <stdio.h>
#include "fvwmlib.h"
+#include "Event.h"
/*
* Return the subwindow member of an event if the event type has one.
Index: libs/System.h
===================================================================
RCS file: /home/cvs/fvwm/fvwm/libs/System.h,v
retrieving revision 1.3
diff -u -u -r1.3 System.h
--- libs/System.h 27 Jan 2007 11:28:55 -0000 1.3
+++ libs/System.h 27 May 2007 16:57:46 -0000
@@ -6,6 +6,12 @@
void fvwmlib_init_max_fd(void);
int getostype(char *buf, int max);
+void setPath(char **p_path, const char *newpath, int free_old_path);
+char *searchPath(
+ const char *pathlist, const char *filename, const char *suffix,
+ int type);
+
+
/* An interface for verifying cached files. */
typedef unsigned long FileStamp;
Index: libs/Target.c
===================================================================
RCS file: /home/cvs/fvwm/fvwm/libs/Target.c,v
retrieving revision 1.17
diff -u -u -r1.17 Target.c
--- libs/Target.c 27 Jan 2007 11:33:16 -0000 1.17
+++ libs/Target.c 27 May 2007 16:57:46 -0000
@@ -33,6 +33,7 @@
#include "fvwmlib.h"
#include "Grab.h"
+#include "Target.h"
void fvwmlib_keyboard_shortcuts(
Display *dpy, int screen, XEvent *Event, int x_move_size,
Index: libs/WinMagic.c
===================================================================
RCS file: /home/cvs/fvwm/fvwm/libs/WinMagic.c,v
retrieving revision 1.14
diff -u -u -r1.14 WinMagic.c
--- libs/WinMagic.c 13 Jan 2007 15:07:14 -0000 1.14
+++ libs/WinMagic.c 27 May 2007 16:57:46 -0000
@@ -26,6 +26,7 @@
#include <X11/Xlib.h>
#include <fvwmlib.h>
#include <stdio.h>
+#include "WinMagic.h"
/* Continuously moves and resized window win from start geometry (s_?) to end
* geometry (e_?). Waits for delay_ms milliseconds after each step except the
Index: libs/XError.c
===================================================================
RCS file: /home/cvs/fvwm/fvwm/libs/XError.c,v
retrieving revision 1.18
diff -u -u -r1.18 XError.c
--- libs/XError.c 27 Jan 2007 11:33:16 -0000 1.18
+++ libs/XError.c 27 May 2007 16:57:46 -0000
@@ -25,6 +25,7 @@
#include <X11/Xlib.h>
#include <fvwmlib.h>
#include "FRenderInit.h"
+#include "XError.h"
#define USE_GET_ERROR_TEXT 1
#ifndef USE_GET_ERROR_TEXT
Index: libs/XResource.c
===================================================================
RCS file: /home/cvs/fvwm/fvwm/libs/XResource.c,v
retrieving revision 1.14
diff -u -u -r1.14 XResource.c
--- libs/XResource.c 29 Jun 2003 19:53:24 -0000 1.14
+++ libs/XResource.c 27 May 2007 16:57:46 -0000
@@ -28,6 +28,7 @@
#include <X11/Xresource.h>
#include "fvwmlib.h"
+#include "XResource.h"
Index: libs/envvar.c
===================================================================
RCS file: /home/cvs/fvwm/fvwm/libs/envvar.c,v
retrieving revision 1.18
diff -u -u -r1.18 envvar.c
--- libs/envvar.c 26 Nov 2005 21:55:12 -0000 1.18
+++ libs/envvar.c 27 May 2007 16:57:47 -0000
@@ -36,6 +36,7 @@
#include <ctype.h>
#include "fvwmlib.h"
+#include "envvar.h"
/* ---------------------------- local definitions -------------------------- */
Index: libs/fio.c
===================================================================
RCS file: /home/cvs/fvwm/fvwm/libs/fio.c,v
retrieving revision 1.2
diff -u -u -r1.2 fio.c
--- libs/fio.c 7 Jan 2007 14:09:44 -0000 1.2
+++ libs/fio.c 27 May 2007 16:57:47 -0000
@@ -21,6 +21,7 @@
#include <sys/types.h>
#include <sys/socket.h>
#include <errno.h>
+#include "fio.h"
/* ---------------------------- imports ------------------------------------ */
Index: libs/safemalloc.c
===================================================================
RCS file: /home/cvs/fvwm/fvwm/libs/safemalloc.c,v
retrieving revision 1.15
diff -u -u -r1.15 safemalloc.c
--- libs/safemalloc.c 27 Jan 2007 11:33:16 -0000 1.15
+++ libs/safemalloc.c 27 May 2007 16:57:47 -0000
@@ -17,6 +17,7 @@
#include "config.h"
#include <stdio.h>
+#include "safemalloc.h"
static void alloc_failed(char *c, int length)
{