mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-22 22:28:02 +01:00
The definition in the local header was not correct; it works because gcc is tolerant to this kind of errors but other compilers are not. The declaration was creating a local variable in each file that call header, and because it is not static gcc's linker will merge them. Other compilers will at best complain for duplicate symbol, and at worst silently duplicate the variable so it will not work as expected. The variable is now moved to the existing structure meant for global variables, so now the code is really clear about using a global variable instead of a static/local one. Took opportunity to add some missing 'static' attributes to some variables. Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
27 lines
839 B
C
27 lines
839 B
C
/*
|
|
* Window Maker window manager
|
|
*
|
|
* Copyright (c) 2014 Window Maker Team
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program, see the file COPYING.
|
|
*/
|
|
|
|
#ifndef WSMAP_H
|
|
#define WSMAP_H
|
|
|
|
void wWorkspaceMapUpdate(WScreen *scr);
|
|
void StartWorkspaceMap(WScreen *scr);
|
|
|
|
#endif
|