From 8aca1b816f39b1b6846c37bcc24d6db83eebe7b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodolfo=20Garc=C3=ADa=20Pe=C3=B1as=20=28kix=29?= Date: Wed, 15 May 2013 13:07:53 +0200 Subject: [PATCH] getWVisualID prototype moved to main.h MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The prototype getWVisualID is moved to the file main.h, because is implemented in main.c Signed-off-by: Rodolfo García Peñas (kix) --- src/funcs.h | 5 ----- src/main.h | 1 + 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/src/funcs.h b/src/funcs.h index 678c6a4c..f8666d16 100644 --- a/src/funcs.h +++ b/src/funcs.h @@ -32,11 +32,6 @@ typedef void (WCallBack)(void *cdata); typedef void (WDeathHandler)(pid_t pid, unsigned int status, void *cdata); -/* ---[ main.c ]---------------------------------------------------------- */ - -int getWVisualID(int screen); - - /* ---[ monitor.c ]------------------------------------------------------- */ int MonitorLoop(int argc, char **argv); diff --git a/src/main.h b/src/main.h index d40a743f..2198b746 100644 --- a/src/main.h +++ b/src/main.h @@ -29,5 +29,6 @@ void ExecuteShellCommand(WScreen *scr, char *command); Bool RelaunchWindow(WWindow *wwin); void wAbort(Bool dumpCore); void ExecExitScript(void); +int getWVisualID(int screen); #endif