Commit 4ebd5fcd authored by Ulrich Sibiller's avatar Ulrich Sibiller Committed by Mike Gabriel

Rootless.c: cleanup function prototypes

parent 6d62b2c0
...@@ -198,8 +198,6 @@ void nxagentRootlessDelTopLevelWindow(WindowPtr pWin) ...@@ -198,8 +198,6 @@ void nxagentRootlessDelTopLevelWindow(WindowPtr pWin)
} }
} }
Window nxagentRootlessWMTopLevelWindow(WindowPtr pWin);
void nxagentConfigureRootlessWindow(WindowPtr pWin, int x, int y, int w, int h, int bw, void nxagentConfigureRootlessWindow(WindowPtr pWin, int x, int y, int w, int h, int bw,
WindowPtr pSib, int stack_mode, Mask mask) WindowPtr pSib, int stack_mode, Mask mask)
{ {
...@@ -409,8 +407,7 @@ Window nxagentRootlessWindowParent(WindowPtr pWin) ...@@ -409,8 +407,7 @@ Window nxagentRootlessWindowParent(WindowPtr pWin)
} }
} }
int nxagentExportAllProperty(pWin) int nxagentExportAllProperty(WindowPtr pWin)
WindowPtr pWin;
{ {
int total = 0; int total = 0;
...@@ -428,12 +425,13 @@ int nxagentExportAllProperty(pWin) ...@@ -428,12 +425,13 @@ int nxagentExportAllProperty(pWin)
return total; return total;
} }
int nxagentExportProperty(pWin, property, type, format, mode, nUnits, value) int nxagentExportProperty(WindowPtr pWin,
WindowPtr pWin; Atom property,
Atom property, type; Atom type,
int format, mode; int format,
unsigned long nUnits; int mode,
void *value; unsigned long nUnits,
void *value)
{ {
char *output = NULL; char *output = NULL;
Bool export = False; Bool export = False;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment